How to write this expression in matlab?
조회 수: 2 (최근 30일)
이전 댓글 표시
how to write in matlab f0r n=0 to 200
and for 0.03
댓글 수: 0
채택된 답변
Walter Roberson
2022년 12월 4일
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)
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Quantum Mechanics에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!