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

댓글 수: 3

darova
darova 2020년 4월 18일
In english please
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일

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