How do I multiply two trigonometric functions
Mostrar comentarios más antiguos
Hi I am trying to multiply sin(x) by the cos(x) and graph the result. What am I doing now is not working. Can someone please explain to me what I am doing wrong? Here is my code.
x=[-2:0.5:10];
y=(sin(x))*(cos(x));
plot(x,y)
1 comentario
John Hart
el 4 de Mayo de 2020
this was very helpful, thanks belleagured student .... in MSEE program
Respuestas (1)
the cyclist
el 16 de Feb. de 2016
You need element-wise multiplication
y=sin(x).*cos(x);
5 comentarios
Alexander Lleonart
el 16 de Feb. de 2016
Star Strider
el 16 de Feb. de 2016
1. To multiply trigonometric functions, another option is the Wikipedia article covering the List of Trigonometric Identities.
2. Don’t name any variables or files the same as built-in MATLAB functions. This is called ‘overshadowing’. Name your file something else. MATLAB is case-sensitive, so renaming it Test.m would be sufficient.
the cyclist
el 17 de Feb. de 2016
Moved this from an "answer" from Alexander to a comment here:
I am sorry you were right. That does work. Thank you.
the cyclist
el 17 de Feb. de 2016
The best form of thanks is to upvote and/or accept an answer. This rewards the contributor, and can point future users to helpful answers.
Muhammad Munam Naseer
el 17 de Ag. de 2016
thanx. solved my problem
Categorías
Más información sobre Annotations en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!