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')按
来源:学生作业帮助网 编辑:六六作业网 时间:2025/01/12 05:29:53
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')按
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.
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')按
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单词错误.