MATLAB: Gaussian psychometric curve fit

erfcgaussian

I have x = 1:5; y = [0.97 0.89 0.5 0.08 0.03]; how to find bias and slope using the function

Best Answer

Use the mldivide,\ function:
x = 1:5;
y = [0.97 0.89 0.5 0.08 0.03];
P = [ones(size(x(:))) x(:)]\y(:);
Bias = P(1)
Slope = P(2)
Bias =
1.3010
Slope =
-0.2690