matlab 画图,想加图形注释,哪错了?
来源:学生作业帮 编辑:神马作文网作业帮 分类:综合作业 时间:2024/11/11 07:22:13
matlab 画图,想加图形注释,哪错了?
>> x=0:0.1:10;
subplot(2,2,1)
plot(x,sin(x),'c-.')
xlable(‘x’)
ylable(‘y’)
title(‘sin(x)’)
subplot(2,2,2)
plot(x,cos(x),'b:')
subplot(2,2,3)
plot(x,sin(2*x),'r-*')
subplot(2,2,4)
plot(x,cos(2*x),'g:o')
按“enter”后,提示
? xlable(‘x’)
Error: Missing variable or function.
>> x=0:0.1:10;
subplot(2,2,1)
plot(x,sin(x),'c-.')
xlable(‘x’)
ylable(‘y’)
title(‘sin(x)’)
subplot(2,2,2)
plot(x,cos(x),'b:')
subplot(2,2,3)
plot(x,sin(2*x),'r-*')
subplot(2,2,4)
plot(x,cos(2*x),'g:o')
按“enter”后,提示
? xlable(‘x’)
Error: Missing variable or function.
x=0:0.1:10;
subplot(2,2,1)
plot(x,sin(x),'c-.')
xlabel('x')
ylabel('y')
title('sin(x)')
subplot(2,2,2)
plot(x,cos(x),'b:')
subplot(2,2,3)
plot(x,sin(2*x),'r-*')
subplot(2,2,4)
plot(x,cos(2*x),'g:o')
1.请在编程时使用英文输入法,切忌不使用中文输入法.
2.label单词错误.
subplot(2,2,1)
plot(x,sin(x),'c-.')
xlabel('x')
ylabel('y')
title('sin(x)')
subplot(2,2,2)
plot(x,cos(x),'b:')
subplot(2,2,3)
plot(x,sin(2*x),'r-*')
subplot(2,2,4)
plot(x,cos(2*x),'g:o')
1.请在编程时使用英文输入法,切忌不使用中文输入法.
2.label单词错误.
matlab 画图,想加图形注释,哪错了?
matlab中如何在图形上加注释
matlab画图不输出图形
matlab画图问题,bar 图注释
MATLAB画图没有报错但无图形
Matlab plot画图怎样在图中添加注释?
matlab编程画图.等了好久了!
请高手解释一下matlab三维图形的画图问题
matlab画图问题,为什么我这样画不出图形?
Matlab画矩形怎样用Matlab画出这种图形,有Matlab的画图教程没.
求公式!matlab画图,在图中画出几条线,不同颜色.带注释之类.
matlab 中如何在所画的图形上做注释,比如我画了一个图有2条曲线,想区别一下两条曲线,如何在图中做标记?