formula representation with matlab.

1 次查看(过去 30 天)
I have the following formula:
how can I represent or solve it with matlab?

回答(1 个)

Walter Roberson
Walter Roberson 2019-12-9
syms rho L N_r
P_b = (1/2 * (1 - sqrt(rho/(2+rho)))^(2*N_r)) * symsum( nchoosek(2*N_r - 1 + L, L) * (1/2 * (1 - sqrt(rho/(2+rho)))^L), L, 1, 2*N_r - 1)
The result will still have a symsum() term when N_r is symbolic. If you subs() a particular numeric value in for N_r then it will be expanded.
There does not appear to be a nice compact formula involved; you just end up with a sum of terms.

类别

Help CenterFile Exchange 中查找有关 Calculus 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by