Advertisement
Guest User

Untitled

a guest
Apr 6th, 2020
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.23 KB | None | 0 0
  1. template<class type, int row,int column>
  2. Matrix<type,row,column> Matrix<type,row,column>::operator*(Matrix rhs)
  3. {
  4.     Matrix<type,row,column> temp;
  5.  
  6.     arm_mat_mult_f32(&this->_matrix, &rhs._matrix, &temp._matrix);
  7.  
  8.     return temp;
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement