Anyone know why it isnt accepting my cos(2x) ?

19 vues (au cours des 30 derniers jours)
Alejandra Caballero
Alejandra Caballero le 22 Oct 2020
x = -pi:2*pi;
f(x) = (cos(2.*x));
plot (f)

Réponse acceptée

Ameer Hamza
Ameer Hamza le 22 Oct 2020
x = -pi:2*pi;
f = cos(2.*x); % f(x) is wrong
plot(x, f)
  3 commentaires
Stephen23
Stephen23 le 22 Oct 2020
Modifié(e) : Stephen23 le 22 Oct 2020
e is not a defined constant. Use exp(x) to calculate e^x
Most likely you will also need element-wise division here:
h = (x^2-x+3)./(x-8);
% ^^
unless you really are trying to solve systems of linear equations.
Ameer Hamza
Ameer Hamza le 23 Oct 2020
@Stephen Cobeldick: Thank you!

Connectez-vous pour commenter.

Plus de réponses (1)

galang andaru ibnu tetuko
galang andaru ibnu tetuko le 24 Juil 2021
how to find max value and error of cos(2x)

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by