View difference between Paste ID: kKxvAZFU and 9U5iRHKV
SHOW: | | - or go back to the newest paste.
1
function x = mcnorm(A, y)
2
    x = (A' * A)\(A' * y)
3
endfunction