How to write this expression in matlab?
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Idrees Muhammad
il 4 Dic 2022
Commentato: Idrees Muhammad
il 4 Dic 2022
how to write in matlab f0r n=0 to 200
and for 0.03
0 Commenti
Risposta accettata
Walter Roberson
il 4 Dic 2022
syms k n r
expr = nchoosek(n, k) * (n-k)/sqrt(n) * (-1)^(n-k) * sinh(r)^(2*n-1-2*k) * cosh(r)^(2*k-n-1)
g(n) = symsum(expr, k, 0, n)
simplify(g, 'steps', 20)
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Quantum Mechanics 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!