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?
2 views (last 30 days)
Show older comments
F(x)= [1- (10/x)]/[1-(100/x^2)]
0 Comments
Answers (2)
Stephan
on 10 May 2021
F = @(x) (1-(10./x))./(1-(100./x.^2));
x_vals = 100:50:1100;
plot (x_vals, F(x_vals))
0 Comments
See Also
Categories
Find more on Surface and Mesh Plots in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!