Solving Complex Matrix Operations
4 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Missael Hernandez
il 4 Mar 2020
Commentato: Missael Hernandez
il 4 Mar 2020

I have tried everything!
0 Commenti
Risposta accettata
Fabio Freschi
il 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 Commenti
Fabio Freschi
il 4 Mar 2020
Add
R = cellfun(@(Rx,Ry,Rz)Rx*Ry*Rz,Rx,Ry,Rz,'UniformOutput',false);
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Operating on Diagonal Matrices in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!