Borrar filtros
Borrar filtros

How to write this expression in matlab?

3 visualizaciones (últimos 30 días)
Idrees Muhammad
Idrees Muhammad el 4 de Dic. de 2022
Comentada: Idrees Muhammad el 4 de Dic. de 2022
how to write in matlab f0r n=0 to 200
and for 0.03

Respuesta aceptada

Walter Roberson
Walter Roberson el 4 de Dic. de 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)
expr = 
g(n) = symsum(expr, k, 0, n)
g(n) = 
simplify(g, 'steps', 20)
ans(n) = 
  1 comentario
Idrees Muhammad
Idrees Muhammad el 4 de Dic. de 2022
Thank you very much, I required help further,if you give me little attention.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Quantum Mechanics en Help Center y File Exchange.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by