algorithms icon indicating copy to clipboard operation
algorithms copied to clipboard

Matrix code one line fix

Open halokid opened this issue 8 years ago • 0 comments

line 150: result := MakeMatrix(make([]float64, A.cols*A.rows), A.cols, A.rows)

maybe change to: result := MakeMatrix(make([]float64, A.cols*A.rows), A.rows, .cols)

the order of the params in not right ??? :)

halokid avatar Jun 11 '16 07:06 halokid