Solving Complex Matrix Operations
    4 Ansichten (letzte 30 Tage)
  
       Ältere Kommentare anzeigen
    
    Missael Hernandez
 am 4 Mär. 2020
  
    
    
    
    
    Kommentiert: Missael Hernandez
 am 4 Mär. 2020
            
I have tried everything!
0 Kommentare
Akzeptierte Antwort
  Fabio Freschi
      
 am 4 Mär. 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 Kommentare
  Fabio Freschi
      
 am 4 Mär. 2020
				Add 
R = cellfun(@(Rx,Ry,Rz)Rx*Ry*Rz,Rx,Ry,Rz,'UniformOutput',false);
Weitere Antworten (0)
Siehe auch
Kategorien
				Mehr zu Operating on Diagonal Matrices finden Sie in Help Center und File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

