Can someone help me with the code to plot this

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 comentarios

John D'Errico
John D'Errico el 6 de Jul. de 2017
Show what you tried. Otherwise, you are just asking us to do your homework for you.
Ziv Melamed
Ziv Melamed el 6 de Jul. de 2017
Editada: Walter Roberson el 6 de Jul. de 2017
>> x=[0,1];
>> y1=sqrt((sin(x).^2)+exp(-(x/2)))
y1 =
1.0000 1.1466
>> plot(x,y1)

Respuestas (1)

Walter Roberson
Walter Roberson el 6 de Jul. de 2017
x = linspace(0,1);

4 comentarios

Ziv Melamed
Ziv Melamed el 6 de Jul. de 2017
Is the y1 function I originally entered correct? When comparing it to the the image which shows the f(x) function.
You missed a .^2 inside the exp()
Les Beckham
Les Beckham el 7 de Jul. de 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.
Good catch, Les.

La pregunta está cerrada.

Preguntada:

el 6 de Jul. de 2017

Cerrada:

el 20 de Ag. de 2021

Community Treasure Hunt

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

Start Hunting!

Translated by