How to retrieve the successive values from the given code

조회 수: 2 (최근 30일)
MINATI
MINATI 2020년 1월 12일
댓글: MINATI 2020년 1월 12일
syms k r a b
k=7;F = zeros(k,1);F(1)=0;F(2)=1;F(3)=a/2;
for r = 1:k
F(k+3)=(symsum((r+1)*F(r+1)*(k-r+1)*F(k-r+1),r,0,k) -symsum((k-r+1)*F(r)*(k-r+2)*F(k-r+2),r,0,k)...
-symsum((k-r+1)*G(r)*(k-r+2)*F(k-r+2),r,0,k)+(M+L)*(k+1)*F(k+1))/((1+b)*(k+1)*(k+2)*(k+3));
end
disp(F(1:7))
  댓글 수: 2
Walter Roberson
Walter Roberson 2020년 1월 12일
F = zeroes(k, 1,'sym');
But you need to rewrite the symsum. It is never possible to use a symbolic variable as a subscript. You should just calculate the expression in vectorized form and sum()
Even if using symbolic variables as an index were permitted, with each of your symsum going to k, you are trying to access up to F(k+q) in each symsum even though you have not defined past F(r+2)

댓글을 달려면 로그인하십시오.

답변 (0개)

카테고리

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