How do I multiply two trigonometric functions

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

John Hart
John Hart 2020년 5월 4일
this was very helpful, thanks belleagured student .... in MSEE program

댓글을 달려면 로그인하십시오.

답변 (1개)

the cyclist
the cyclist 2016년 2월 16일

8 개 추천

You need element-wise multiplication
y=sin(x).*cos(x);

댓글 수: 5

I put this in, x=[-2:0.5:10]; y=sin(x).*cos(x);
and I got:
warning: function ./test.m shadows a core library function
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.
Moved this from an "answer" from Alexander to a comment here:
I am sorry you were right. That does work. Thank you.
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.
thanx. solved my problem

댓글을 달려면 로그인하십시오.

카테고리

도움말 센터File Exchange에서 Annotations에 대해 자세히 알아보기

질문:

2016년 2월 16일

댓글:

2020년 5월 4일

Community Treasure Hunt

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

Start Hunting!

Translated by