gamma function error in calculation
    6 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    

 % Starting value
% Starting valueThe above formula is coded as follows: 
syms x a
Y=sym(zeros(1));
Y(1)=0;
a=1/2
for i=1:4
    if i==5
        A=1
    else
        A=0
    end
    if i==4
        B=1
    else
        B=0
    end
    Y(i+1)=simplify((gamma(a*(i-1)+1)/gamma((a*(i-1)+3/2))*(A-Y(i)+((2*B)/gamma(5/2)))));
end
disp(Y)
 But it is showing the calculation error Y(5)=1 but the value is shown in MATLAB is as follows:('2535301200456458897054207582575/2535301200456458802993406410752'). Ecxept Y(5) all values are zeros 
0 comentarios
Respuestas (1)
  VBBV
      
      
 el 16 de Abr. de 2022
        syms x a
Y=sym(zeros(1));
Y(1)=0;
a=1/2
for i=1:4
    if i==5
        A=1;
        B = 0;
         Y(i+1)=simplify((gamma(a*(i-1)+1)/gamma((a*(i-1)+3/2))*(A-Y(i)+((2*B)/gamma(5/2)))));
    else
        A=0;
        B =1 ;
         Y(i+1)=simplify((gamma(a*(i-1)+1)/gamma((a*(i-1)+3/2))*(A-Y(i)+((2*B)/gamma(5/2)))));
    end
    if i==4
        B=1;
        A = 0;
         Y(i+1)=simplify((gamma(a*(i-1)+1)/gamma((a*(i-1)+3/2))*(A-Y(i)+((2*B)/gamma(5/2)))));
    else
        B=0;
        A = 1;
         Y(i+1)=simplify((gamma(a*(i-1)+1)/gamma((a*(i-1)+3/2))*(A-Y(i)+((2*B)/gamma(5/2)))));
    end
end
disp(vpa(Y,4))
3 comentarios
  Torsten
      
      
 el 17 de Abr. de 2022
				You mix symbolic and floating point parameters in the calculation of Y(5). This will result in reduced accuracy.
Ver también
Categorías
				Más información sobre Gamma Functions 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!



