MATLAB编程 帮忙看看那里错了 怎么不能运行啊 谢谢

2024-12-21 12:57:54
推荐回答(2个)
回答1:

最后四行:
错误1:subplot(2,2,1)或者subplot(221) 而不是subplot(2 2 1);
可以用逗号或者不隔开,但是不能用空格。
错误2:subplot(2,2,1)后面要用分号。
改为:
subplot(2,2,1);plot(x,cc1,'r');
剩下的三行错误相同。

回答2:

subplot函数用错了,中间用逗号
plot(x,cc1,'r');
subplot(2,2,2) ;
plot(x,cc2,'r');
subplot(2,2,3);
plot(x,cc3,'r');
subplot(2,2,4);
plot(x,cc4,'r');
希望对你有帮助!