目录
要绘制函数的图形,需要执行以下步骤:1.通过指定变量 x 的值范围来定义 x,为此函数将绘制出来;2.定义函数, y = f(x);3.调用 plot 命令,如下 plot(x, y)。
一、心形绘图
1.数学代码
clc;close all;
t = 0:......:2*pi;
x = 16*sin(t) .^ 3;
y = 13*cos(t) - 5*cos(2*t) -2*cos(3*t) - cos(4*t);
scatter(x,y,'red',"filled");
目录
要绘制函数的图形,需要执行以下步骤:1.通过指定变量 x 的值范围来定义 x,为此函数将绘制出来;2.定义函数, y = f(x);3.调用 plot 命令,如下 plot(x, y)。
clc;close all;
t = 0:......:2*pi;
x = 16*sin(t) .^ 3;
y = 13*cos(t) - 5*cos(2*t) -2*cos(3*t) - cos(4*t);
scatter(x,y,'red',"filled");