Error using ==> mrdivide Matrix dimensions must agree.
古いコメントを表示
Why can't I draw y with x
y = exp(1 / x)
x = linspace (0,500,30)
plot(x,y)
Where am I wrong?
回答 (1 件)
madhan ravi
2019 年 9 月 5 日
編集済み: madhan ravi
2019 年 9 月 5 日
x = linspace(0,500,30);
y = exp(1 ./ x);
plot(x,y)
カテゴリ
ヘルプ センター および File Exchange で Creating and Concatenating Matrices についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!