Tranform vertices by 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?

1 Comment

What kind of transformations? Can you post an example?

Sign in to comment.

 Accepted Answer

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

1 Comment

But what does one do when the vertices are stored in a 3x5 matrix and the transformation matrix is 3x3?

Sign in to comment.

More Answers (0)

Categories

Tags

Asked:

on 12 Apr 2016

Commented:

on 15 Mar 2021

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!