summaryrefslogtreecommitdiff
path: root/least_square_fit/quickref.tex
blob: e0577399c57f6937a52bc4950290745076876db2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Creating a matrix with all ones:\\
{\ex \lstinline|    o = ones_like(l)|}

Creating the A matrix:\\
{\ex \lstinline|    A = array(l, ones_like(l)).T|}

Computing least square:\\
{\ex \lstinline|    result = lstsq(A, tsq)|}

Obtaining the m and c values:\\
{\ex \lstinline|    m, c = result[0]|}

Computing the least square fit line:\\
{\ex \lstinline|    lst_line = m * l + c|}