Numerical value for sum of bessel functions
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
I would like to find as numerical value the sum of bessel functions A0 .
Is it possible to speed it ?
x= linspace(-2,2,100); [X,XX]=meshgrid(x,x)
% X matrix,
syms k
A0 = symsum(((-1)^k).*((X).^(2*k)).*besselj(2*k,X), k, 0, 10);
0 Commenti
Risposta accettata
Torsten
il 11 Mar 2019
k = 0:10;
x = 3;
A0 = sum((-1).^k.*x.^(2*k).*besselj(2*k,x))
If x is a vector, use
A0 = arrayfun(@(x)sum((-1).^k.*x.^(2*k).*besselj(2*k,x)),x)
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Bessel functions 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!