How can I use symsum function to calculate this equation?
1 回表示 (過去 30 日間)
古いコメントを表示
As the file i attach, i want to caculate the equation.
The boundary typed on picture is wrong.
The correction is n=0 to n=1000.
And J-function is bessel function.
H-function is hankel funtion.
Beta*alpha=1.2*pi.
epsilon n=1 when n=0.
epsilon n=2 when n is not equal to 0.
0 件のコメント
回答 (1 件)
Rohit Pappu
2020 年 12 月 28 日
%% Define constants
syms n phi lambda;
beta_alpha = 1.2*pi;
epsilon0 = 1; %% Epsilon when n=0
epsilon = 2; %% Epsilon when n~=0
%% Define equation for n = 1 to 100
f = epsilon*besselj(n,beta_alpha)*cos(n*phi)/besselh(n,2,beta_alpha);
%% Use symsum to find sum of series , f/2 case is when n = 0
sum = (2*pi/lambda)*(abs(symsum(f,n,[1,100])+symsum(f/2,n,[0,0]))^2);
2 件のコメント
Rohit Pappu
2020 年 12 月 28 日
Edit : subs can be used to denote the n=0 term
%% Use symsum to find sum of series , f/2 case is when n = 0
sum = (2*pi/lambda)*(abs(symsum(f,n,[1,100])+subs(f/2,n,0))^2);
参考
カテゴリ
Help Center および File Exchange で Calculus についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!