如何用matlab绘制玫瑰花(MATLAB的强大绘图功能之绘制玫瑰花)
如何用matlab绘制玫瑰花(MATLAB的强大绘图功能之绘制玫瑰花)set(h 'FontName' 'Arial Rounded MT Bold');% 设置字体set(h 'FontWeight' 'bold' 'FontSize' 30)% 设置加粗字体,字号30plot(t sin(0.5*t) 'w') % 画出任意图形,待标注%'L'h = text(90 300 'L' 'Rotation' 90);% 输出文字在坐标
MATLAB强大的绘图功能是其特点之一,我们可以方便的画出美观的图像。下面是用MATLAB语言绘制玫瑰花的程序。喜欢的小伙伴可以自己运行,看看效果。当然,你也可以对程序作适当修改,来显示不同的图形和字样。%主程序
function plot_rose
draw_main(450 90);
t = 0:10 ;
plot(t sin(0.5*t) 'w') % 画出任意图形,待标注
%'L'
h = text(90 300 'L' 'Rotation' 90);% 输出文字在坐标
set(h 'FontWeight' 'bold' 'FontSize' 30)% 设置加粗字体,字号30
set(h 'FontName' 'Arial Rounded MT Bold');% 设置字体
set(h 'FontAngle' 'italic');% 设置斜字体
set(h 'Color' 'r');% 设置字体颜色
%'O'
h = text(120 250 'O' 'Rotation' 85);% 输出文字在坐标
set(h 'FontWeight' 'bold' 'FontSize' 30)% 设置加粗字体,字号30
set(h 'FontName' 'Arial Rounded MT Bold');% 设置字体
set(h 'FontAngle' 'italic');% 设置斜字体
没有添加文字
添加文字