summaryrefslogtreecommitdiff
path: root/regress.m
blob: ad06796a4dd25f68b1bfdf3cb122526c1ca5db44 (plain)
1
2
3
4
function mn = regress(x, y)
  mn = [ x ones(length(x), 1) ] \ y;
endfunction