MATLAB: How to solve a system of equations involving distribution

equationssolve

gamcdf(3.01,a,b)=0.4
gamcdf(4.63,a,b)=0.6
how to solve for a and b?
I tried solver & evalin(symengine)

Best Answer

this worked:
F = [gamcdf(6.63,x(1),x(2))-0.4;
gamcdf(8.89,x(1),x(2))-0.6];
x0 = [2; 0.8];
options=optimset('Display','iter');
[x,fval] = fsolve(@SPI05,x0,options)
spasiba Andrei !