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 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
F(x)= [1- (10/x)]/[1-(100/x^2)]
0 Kommentare
Antworten (2)
Stephan
am 10 Mai 2021
F = @(x) (1-(10./x))./(1-(100./x.^2));
x_vals = 100:50:1100;
plot (x_vals, F(x_vals))
0 Kommentare
Siehe auch
Kategorien
Mehr zu Surface and Mesh Plots finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!