Y=√(|e^x | )

2 ビュー (過去 30 日間)
Gabriela Ushiña
Gabriela Ushiña 2020 年 4 月 18 日
コメント済み: Gabriela Ushiña 2020 年 4 月 19 日
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
  1 件のコメント
Gabriela Ushiña
Gabriela Ushiña 2020 年 4 月 19 日
thank you very much!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMATLAB についてさらに検索

タグ

製品

Community Treasure Hunt

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

Start Hunting!

Translated by