Y=√(|e^x | )

2 Ansichten (letzte 30 Tage)
Gabriela Ushiña
Gabriela Ushiña am 18 Apr. 2020
Kommentiert: Gabriela Ushiña am 19 Apr. 2020
Como poner la ecuacion en mi programa de matlab?
Y=√(|e^x | )
Porfavor, Gracias
  3 Kommentare
Dave
Dave am 18 Apr. 2020
If I understand correctly
the matlab equation for this would be:
Y = sqrt(abs(exp(x)))
Gabriela Ushiña
Gabriela Ushiña am 19 Apr. 2020
Thank you very much!

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Sriram Tadavarty
Sriram Tadavarty am 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
  1 Kommentar
Gabriela Ushiña
Gabriela Ushiña am 19 Apr. 2020
thank you very much!

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu MATLAB finden Sie in Help Center und File Exchange

Tags

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by