%%Matlab
%%%%显示我for循环第一行中的运算符使用无效,新手小白不明白为什么
clc;clear all
x=0:0.01:20;
for Ea/Es= [1,1.5,2]
y=-6./(6+x*Ea/Es);
plot(x,y)
hold on
end
grid off
ylabel("kts/2\Lambda")
xlabel("T")
legend("Ea/Es=1","Ea/Es=1.5","Ea/Es=2")
%%Matlab
%%%%显示我for循环第一行中的运算符使用无效,新手小白不明白为什么
clc;clear all
x=0:0.01:20;
for Ea/Es= [1,1.5,2]
y=-6./(6+x*Ea/Es);
plot(x,y)
hold on
end
grid off
ylabel("kts/2\Lambda")
xlabel("T")
legend("Ea/Es=1","Ea/Es=1.5","Ea/Es=2")
基于Monster 组和GPT的调写:
变量名不能包含斜杠(/)字符。在你的代码中,Ea/Es 应该是一个变量,因此需要给它一个合法的变量名。你可以使用 EaEs 或其他有效的变量名替换 Ea/Es,例如:
clc; clear all;
x = 0:0.01:20;
for EaEs = [1, 1.5, 2]
y = -6 ./ (6 + x * EaEs);
plot(x, y);
hold on;
end
grid off;
ylabel("kts/2\Lambda");
xlabel("T");
legend("Ea/Es=1", "Ea/Es=1.5", "Ea/Es=2");
另外,你也需要将 Ea/Es 改为 EaEs。