How to doI plot F(x) = [1 -(10/x)]/[1-(100/x^2)] for X ranging from 100 to 1100 at an interval of 50?
1 次查看(过去 30 天)
显示 更早的评论
回答(2 个)
Stephan
2021-5-10
F = @(x) (1-(10./x))./(1-(100./x.^2));
x_vals = 100:50:1100;
plot (x_vals, F(x_vals))
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Surface and Mesh Plots 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!