I'm trying to graph a function on an interval, and the graph either doesn't show up or is the wrong graph

11 vues (au cours des 30 derniers jours)
x = linspace(-2,16,100);
y = (4*cos(x))./(x.*exp(x.*-0.75));
plot(x,y)
Here is my code, and when i run it, the graph is not the same as when i graphed the funcion on a calculator.
I have to graph F(x) = 4cosx / x+e^(-0.75x) on the interval -2≤x≤16
How would i plot this graph without it giving me errors, and have enough points to make the graph smooth.

Réponses (1)

Voss
Voss le 20 Sep 2022
x = linspace(-2,16,100);
% y = (4*cos(x))./(x.*exp(x.*-0.75));
y = (4*cos(x))./(x+exp(x.*-0.75));
% ^ <---- here: "+" not ".*"
plot(x,y)

Catégories

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

Produits


Version

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by