Hi, how can i proceed with this question, everytime i plot it, it doesn't show me my line. Can u guys help me

1 vue (au cours des 30 derniers jours)
x = -10 : 0.01 : 10;
y = (exp(x)/ sin(x)) + 0.3;
plot(x,y)

Réponse acceptée

Jan Studnicka
Jan Studnicka le 8 Nov 2019
You are missing . before /. See:
x = -10 : 0.01 : 10;
y = (exp(x)./ sin(x)) + 0.3; % use ./ instead of /
plot(x,y)

Plus de réponses (1)

the cyclist
the cyclist le 8 Nov 2019
Modifié(e) : the cyclist le 8 Nov 2019
It's because you used a matrix division instead of an element-wise division to calculate y. Try this instead:
y = (exp(x)./ sin(x)) + 0.3;
Note the use of ./ in place of just / in the formula.
See this documentation for more details.

Catégories

En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange

Produits


Version

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by