Real and Imaginary element Separation from square matrix and stacking into a vector
이전 댓글 표시
Around 10000 matrices are stored in a folder in .mat format.
The matrices are square in nature with order NxN in my case N=15.
Important characteristics of the matrix

1) Diagonal elements D11,D22 etc are real in nature
2) The other elements in the matrices are complex in nature.
3) The elements in the lower triangle are equal to the complex conjugates of the upper triangle matrix, so the real part remains the same.
Requirement:
1) Separate all the diagonal elements and store in a column vector.
So Nx1 column vector-1
2) Separate all the Real parts of the upper triangle matrix and lower triangle matrix and store in another column vector.
Since for NxN matrix the number of elements the upper triangle is given by is N(N-1)/2 and similarly for lower triangle is given by N(N-1)/2
So in total 2 x (N(N-1))/2)= [N(N-1)] x1 column vector-2
3) At the end stacking a column vector-1 and column vector-2 to form a column vector-3 of N2x1 order.
Like-

Please help me in getting Column vector-3 which is very crucial. Manually could be done for few matrices but at present the task is tobe done for 10000 matrices, which may even increase. Thanks
채택된 답변
추가 답변 (1개)
Setsuna Yuuki.
2020년 11월 10일
with a matrix of example "a":
a = [1 1+3*i 2+3*i; 3+4*i 2 4+4*i; 5+4*i 6+4*i 3];
realMatrix = zeros(1,length(a));
realMatrixx = zeros(1,(length(a)*(length(a)-1))/2);
k=1; l = 1;
for i=1:length(a)
for j=1:length(a)
if(a(i,j) == real(a(i,j))) %Only if real (a+0*j)
realMatrix(k) = a(i,j);
k=k+1;
elseif(a(i,j) == complex(a(i,j))) %only is complex (a+b*j)
realMatrixx(l) = real(a(i,j));
l=l+1;
end
end
end
realMatrix=realMatrix'; %V1
realMatrixx=realMatrixx'; %V2
final = [realMatrix;realMatrixx]; %V3
카테고리
도움말 센터 및 File Exchange에서 Logical에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!