Y=√(|e^x | )

2 vues (au cours des 30 derniers jours)
Gabriela Ushiña
Gabriela Ushiña le 18 Avr 2020
Como poner la ecuacion en mi programa de matlab?
Y=√(|e^x | )
Porfavor, Gracias
  3 commentaires
Dave
Dave le 18 Avr 2020
If I understand correctly
the matlab equation for this would be:
Y = sqrt(abs(exp(x)))
Gabriela Ushiña
Gabriela Ushiña le 19 Avr 2020
Thank you very much!

Connectez-vous pour commenter.

Réponse acceptée

Sriram Tadavarty
Sriram Tadavarty le 18 Avr 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 commentaire
Gabriela Ushiña
Gabriela Ushiña le 19 Avr 2020
thank you very much!

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur MATLAB dans Help Center et File Exchange

Tags

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by