Can someone please help! I cannot plot this graph.
Ältere Kommentare anzeigen
x=[-0.1:0.1];
y=35000000*x+401000./x-17122.7./x.^2-1494500;
figure
plot(x,y)
legend('y')
I think my function is correct, but the graph is blank and no line shows up. Please help. Thank you!
Akzeptierte Antwort
Weitere Antworten (1)
Image Analyst
am 10 Sep. 2021
Because your x has only one value in it. Try using linspace() and specifying the number of elements you want in x:
x = linspace(-0.1, 0.1, 2000);
y = 35000000*x + 401000./x - 17122.7./x.^2 - 1494500;
plot(x,y, 'b-', 'LineWidth', 2);
grid on;
legend('y')

1 Kommentar
Tianlan Yang
am 10 Sep. 2021
Kategorien
Mehr zu 2-D and 3-D Plots finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
