Solving Complex Matrix Operations

5 vues (au cours des 30 derniers jours)
Missael Hernandez
Missael Hernandez le 4 Mar 2020
I have tried everything!

Réponse acceptée

Fabio Freschi
Fabio Freschi le 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 commentaires
Fabio Freschi
Fabio Freschi le 4 Mar 2020
Add
R = cellfun(@(Rx,Ry,Rz)Rx*Ry*Rz,Rx,Ry,Rz,'UniformOutput',false);
Missael Hernandez
Missael Hernandez le 4 Mar 2020
what if I want to multiply each individual R by another vector?

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Language Fundamentals dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by