I’m not certain what the desired result is here.
Try this —
x = linspace(-10, 10, 5);
y = -0.15*x-21.3;
X = [x(:), ones(size(x(:)))] % Design Matrix
Coefficients = X \ y(:) % Proof
.
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!