Plotting mathematical functions in matplot
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Himanshu Sinha
am 22 Mai 2021
Beantwortet: Sulaymon Eshkabilov
am 22 Mai 2021
I need to plot this in python.
y=(1-x) ^3 -2.
-1≤ x ≤ 5.(How do I define this range?)
0 Kommentare
Akzeptierte Antwort
Sulaymon Eshkabilov
am 22 Mai 2021
In MATLAB, you can plot it using:
y=@(x)((1-x).^3-2);
fplot(y, [-1, 5]);
0 Kommentare
Weitere Antworten (0)
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!