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

21 visualizzazioni (ultimi 30 giorni)
x = -pi:2*pi;
f(x) = (cos(2.*x));
plot (f)

Risposta accettata

Ameer Hamza
Ameer Hamza il 22 Ott 2020
x = -pi:2*pi;
f = cos(2.*x); % f(x) is wrong
plot(x, f)
  3 Commenti
Stephen23
Stephen23 il 22 Ott 2020
Modificato: Stephen23 il 22 Ott 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 il 23 Ott 2020
@Stephen Cobeldick: Thank you!

Accedi per commentare.

Più risposte (1)

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

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by