void * @return void */ function eachRow($action); /** * Apply a callback function to each column of the matrix. * * @param callable $action (\Arma\SvCol) -> void * @return void */ function eachCol($action); // Transform /** * Returns an inverse of the matrix. * * @return DenseMatrix */ function i(); }