MATLAB: Tranform vertices by Matrix

matrix

I have to write a function that transforms a list of vertices by a matrix and returns a list of transformed vertices (same size). Any ideas on how to approach this problem?

Best Answer

Wouldn't it just be
result = m*v;
Related Question