-> x = -2:0.01:2;
-> clf
-> a = 8;
-> y = a ^ 3/(x ^ 2 + a ^ 2);
行/列尺寸不一致。
->情节(x,y)
undefined variable :y

最佳答案

x是 vector ,请在适用的地方使用点缀运算符:

y=a^3./(x.^2+a^2)

关于plot - 为什么scilab显示的行,列尺寸不一致?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/65433860/

10-12 19:16