MATLAB: Y=√(|e^x | )

MATLAB

Como poner la ecuacion en mi programa de matlab?
Y=√(|e^x | )
Porfavor, Gracias

Best Answer

Hi Gabriela,
This can be written in MATLAB program as such,
x = 10;
y = sqrt(abs(exp(x)));
The sqrt, abs, and exp functions help to perform this task.
Please do place your question in english next time, as it helps majority to understand what is asked for.
Thanking you.
Regards,
Sriram
Related Question