Effacer les filtres
Effacer les filtres

i want to plot an log function

1 vue (au cours des 30 derniers jours)
hassan elkholy
hassan elkholy le 12 Déc 2020
Réponse apportée : VBBV le 12 Déc 2020
i want to plot this equation
y=(r^3) ln (1/r)
and i use the following code
r = 0.01:0.001:1;
y = (r^3)*log(1/r);
plot(r,y)
can you help me to plot it, because this code has error?
error is
Error using /
Matrix dimensions must agree.

Réponses (1)

VBBV
VBBV le 12 Déc 2020
%true
r = 0.01:0.001:1;
y = (r.^3).*log(1./r); %element wise
plot(r,y);grid on

Catégories

En savoir plus sur Log Plots dans Help Center et File Exchange

Tags

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by