Thomas Dehaeze
6e3677eb29
Folder name is changed, rework the html templates Change the organisation.
6 lines
106 B
Matlab
6 lines
106 B
Matlab
function Y = myfit2(x,y)
|
|
A = [x ones(size(x))]\y;
|
|
a = A(1); b = A(2);
|
|
Y = y - (a*x + b);
|
|
end
|