在matlab生成的函数上加标记怎样加.如y=x^2 ,y=kx;在图形上标出那两个函数
2020-04-29
在matlab生成的函数上加标记怎样加.如y=x^2 ,y=kx;在图形上标出那两个函数
优质解答
x=linspace(-5,5);
y=[x.^2;3*x];
plot(x,y)
text([2;-2],[2^2;3*-2],{' \leftarrow y=x^2';'\leftarrow y=3x'},'FontSize',18)
还有一种是legend
你可以试试把这句话加到上面程序后的效果
legend('x^2','3x')
x=linspace(-5,5);
y=[x.^2;3*x];
plot(x,y)
text([2;-2],[2^2;3*-2],{' \leftarrow y=x^2';'\leftarrow y=3x'},'FontSize',18)
还有一种是legend
你可以试试把这句话加到上面程序后的效果
legend('x^2','3x')