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!