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

3 Comments

darova
darova on 18 Apr 2020
In english please
If I understand correctly
the matlab equation for this would be:
Y = sqrt(abs(exp(x)))
Gabriela Ushiña
Gabriela Ushiña on 19 Apr 2020
Thank you very much!

Sign in to comment.

 Accepted Answer

Sriram Tadavarty
Sriram Tadavarty on 18 Apr 2020
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

More Answers (0)

Categories

Find more on Get Started with MATLAB in Help Center and File Exchange

Products

Tags

Community Treasure Hunt

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

Start Hunting!