How to write this expression in MatLab
5 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
x*e^(ln(2)x)=1

0 Commenti
Risposta accettata
Jan
il 7 Dic 2021
x * exp(log(2^x)) = 1
3 Commenti
Yongjian Feng
il 7 Dic 2021
Modificato: Yongjian Feng
il 7 Dic 2021
exp already means power, e^x is exp(x). matlab will even simplify this for you.
Jan
il 7 Dic 2021
@MARTINS Preimanis: Whenever you have such questions, there are two standard ways:
- Ask Matlab: doc exp
- Try it: exp(2)
Più risposte (1)
Yongjian Feng
il 7 Dic 2021
Modificato: Yongjian Feng
il 7 Dic 2021
e^x is exp(x) in matlab, and lnx is log(x).
0 Commenti
Vedere anche
Categorie
Scopri di più su Exponents and Logarithms in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!