Azzera filtri
Azzera filtri

Plotting mathematical functions in matplot

5 visualizzazioni (ultimi 30 giorni)
I need to plot this in python.
y=(1-x) ^3 -2.
-1≤ x ≤ 5.(How do I define this range?)

Risposta accettata

Sulaymon Eshkabilov
Sulaymon Eshkabilov il 22 Mag 2021
In MATLAB, you can plot it using:
y=@(x)((1-x).^3-2);
fplot(y, [-1, 5]);

Più risposte (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by