この方程式を MatLab で入力すると、次のエラーが表示されます。
x=linspace(0,8*pi,1000);
y=x*sin(x);
??? Error using ==> mtimes
Inner matrix dimensions must agree.
どうもありがとうございました!
この方程式を MatLab で入力すると、次のエラーが表示されます。
x=linspace(0,8*pi,1000);
y=x*sin(x);
??? Error using ==> mtimes
Inner matrix dimensions must agree.
どうもありがとうございました!
あなたの質問はプロットとは何の関係もありません。
しかし、要素ごとの乗算が必要です。例: * の代わりに .*
x=linspace(0,8*pi,1000); y=x.*sin(x);
http://stuff.mit.edu/afs/sipb/project/www/matlab/imatlab/node10.html