Codes for coherent state function?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Abu Zar
am 13 Jan. 2023
Kommentiert: Abu Zar
am 11 Feb. 2023
Summation n=0 to10 exp-abs(alpha)^2*alpha^n/sqrtfactorial(n)
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 13 Jan. 2023
syms alpha n
result = symsum(exp(-abs(alpha)^2 * alpha^n / sqrt(factorial(n)) ), n, 0, 10)
12 Kommentare
Walter Roberson
am 9 Feb. 2023
remove the sum() from resultsym to get length(alpha) by length(0:11), which would be removing the summation from the formula
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Quantum Mechanics finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!