Skip to content

Latest commit

 

History

History
63 lines (31 loc) · 5.83 KB

File metadata and controls

63 lines (31 loc) · 5.83 KB

Compute Multivariable Calculus in Mathematica

Compute Linear Algebra in MATLAB

Note: For the matrix-vector multiplication of Ax + y, choose the algorithm that uses linear combination (AXPY operations), since AXPY operations access a matrix by columns and this way of subsetting a matrix tends to be faster than an algorithm that accesses a matrix by rows. However, for the matrix-vector multiplication of A^Tx + y, choose the algorithm that uses dot products, because these dot product operations access a matrix by columns.