How to write this expression in MatLab
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
MARTINS Preimanis
el 7 de Dic. de 2021
Comentada: Jan
el 7 de Dic. de 2021
x*e^(ln(2)x)=1
0 comentarios
Respuesta aceptada
Jan
el 7 de Dic. de 2021
x * exp(log(2^x)) = 1
3 comentarios
Yongjian Feng
el 7 de Dic. de 2021
Editada: Yongjian Feng
el 7 de Dic. de 2021
exp already means power, e^x is exp(x). matlab will even simplify this for you.
Jan
el 7 de Dic. de 2021
@MARTINS Preimanis: Whenever you have such questions, there are two standard ways:
- Ask Matlab: doc exp
- Try it: exp(2)
Más respuestas (1)
Yongjian Feng
el 7 de Dic. de 2021
Editada: Yongjian Feng
el 7 de Dic. de 2021
e^x is exp(x) in matlab, and lnx is log(x).
0 comentarios
Ver también
Categorías
Más información sobre Get Started with MATLAB en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!