
How to write exponential integral in equation?
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Dhawal Beohar
il 30 Nov 2020
Commentato: Dhawal Beohar
il 30 Nov 2020
How can I write above equation in matlab code, where E1 is exponential integral.
0 Commenti
Risposta accettata
Ameer Hamza
il 30 Nov 2020
Modificato: Ameer Hamza
il 30 Nov 2020
You can use expint() function
N = 1;
U = 2;
r = log2(exp(1))*exp(N/U)*expint(N/U)
Result
>> r
r =
1.3315
If you have symbolic toolbox, you can write the symbolic expression
syms U N
r = log2(exp(sym(1)))*exp(N/U)*expint(N/U)
Result from the live script

Più risposte (0)
Vedere anche
Categorie
Scopri di più su Calculus 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!