Solving Complex Matrix Operations

8 views (last 30 days)
I have tried everything!

Accepted Answer

Fabio Freschi
Fabio Freschi on 4 Mar 2020
You can do this in a for loop or using arrayfun
% your A vector
A = rand(1,1001); % dummy vector
% calculation of the matrix B
B = arrayfun(@(a)[cos(-a) sin(-a) 0; -sin(-a) cos(-a) 0; 0 0 1],A,'UniformOutput',false);
Than you can access each matrix using the {} indexing, e.g. the first matrix is
B{1}
etc
  5 Comments
Fabio Freschi
Fabio Freschi on 4 Mar 2020
Add
R = cellfun(@(Rx,Ry,Rz)Rx*Ry*Rz,Rx,Ry,Rz,'UniformOutput',false);
Missael Hernandez
Missael Hernandez on 4 Mar 2020
what if I want to multiply each individual R by another vector?

Sign in to comment.

More Answers (0)

Categories

Find more on Language Fundamentals in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!