Info

This question is closed. Reopen it to edit or answer.

Can someone help me with the code to plot this

1 view (last 30 days)
Ziv Melamed
Ziv Melamed on 6 Jul 2017
Closed: MATLAB Answer Bot on 20 Aug 2021
Can someone tell me how to plot this function on matlab. Every time I input the function and try plotting, the graph does not look right.
  2 Comments
John D'Errico
John D'Errico on 6 Jul 2017
Show what you tried. Otherwise, you are just asking us to do your homework for you.
Ziv Melamed
Ziv Melamed on 6 Jul 2017
Edited: Walter Roberson on 6 Jul 2017
>> x=[0,1];
>> y1=sqrt((sin(x).^2)+exp(-(x/2)))
y1 =
1.0000 1.1466
>> plot(x,y1)

Answers (1)

Walter Roberson
Walter Roberson on 6 Jul 2017
x = linspace(0,1);
  4 Comments
Les Beckham
Les Beckham on 7 Jul 2017
You should check your parentheses also. As written, you are taking the square root of the entire expression instead of just the sin^2(x) portion.

Community Treasure Hunt

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

Start Hunting!