Y=√(|e^x | )

2 次查看(过去 30 天)
Gabriela Ushiña
Gabriela Ushiña 2020-4-18
Como poner la ecuacion en mi programa de matlab?
Y=√(|e^x | )
Porfavor, Gracias
  3 个评论
Dave
Dave 2020-4-18
If I understand correctly
the matlab equation for this would be:
Y = sqrt(abs(exp(x)))
Gabriela Ushiña
Gabriela Ushiña 2020-4-19
Thank you very much!

请先登录,再进行评论。

采纳的回答

Sriram Tadavarty
Sriram Tadavarty 2020-4-18
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 个)

类别

Help CenterFile Exchange 中查找有关 MATLAB 的更多信息

标签

产品

Community Treasure Hunt

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

Start Hunting!

Translated by