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

3 个评论

darova
darova 2020-4-18
In english please
If I understand correctly
the matlab equation for this would be:
Y = sqrt(abs(exp(x)))
Thank you very much!

请先登录,再进行评论。

 采纳的回答

Sriram Tadavarty
Sriram Tadavarty 2020-4-18

1 个投票

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

更多回答(0 个)

类别

帮助中心File Exchange 中查找有关 Get Started with MATLAB 的更多信息

产品

标签

Community Treasure Hunt

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

Start Hunting!

Translated by