Azzera filtri
Azzera filtri

how can i plot this equation?

1 visualizzazione (ultimi 30 giorni)
hassan elkholy
hassan elkholy il 12 Dic 2020
Commentato: Ive J il 12 Dic 2020
how can i plot this equation?
x=0.1:1
y= x^3 ln (1/x)

Risposta accettata

Ive J
Ive J il 12 Dic 2020
Please first try to search in answers or simply Google it.
% doc plot
x = 1:10;
y = x.^3;
plot(x, y)
  2 Commenti
hassan elkholy
hassan elkholy il 12 Dic 2020
y = x^3 * ln (1/x)
Ive J
Ive J il 12 Dic 2020
y = x.^3.*log(1./x);

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Line Plots in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by