Y=√(|e^x | )

2 visualizaciones (últimos 30 días)
Gabriela Ushiña
Gabriela Ushiña el 18 de Abr. de 2020
Comentada: Gabriela Ushiña el 19 de Abr. de 2020
Como poner la ecuacion en mi programa de matlab?
Y=√(|e^x | )
Porfavor, Gracias
  3 comentarios
Dave
Dave el 18 de Abr. de 2020
If I understand correctly
the matlab equation for this would be:
Y = sqrt(abs(exp(x)))
Gabriela Ushiña
Gabriela Ushiña el 19 de Abr. de 2020
Thank you very much!

Iniciar sesión para comentar.

Respuesta aceptada

Sriram Tadavarty
Sriram Tadavarty el 18 de Abr. de 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 comentario
Gabriela Ushiña
Gabriela Ushiña el 19 de Abr. de 2020
thank you very much!

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre MATLAB en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by