Stacking Matrices One after Another to make a final matrix

8 vues (au cours des 30 derniers jours)
Chris Dan
Chris Dan le 23 Août 2020
Commenté : Cris LaPierre le 23 Août 2020
Hello,
I have different matrices( each matrix has size of 2x4 ) stored in a file as a cell array, I am adding them together with the following code:
I have also attached the file and the pictures with the question.
for i =1:1:(size(Identify_3,1)-1)
Final_Matrix = [Identify_3{i, 1}{1, 3};Identify_3{i+1, 1}{1, 3}]
end
The problem is I am not getting correct results.
Does anybody know...?

Réponse acceptée

Cris LaPierre
Cris LaPierre le 23 Août 2020
Does this do what you want?
step1 = vertcat(Identify_3{:})';
step2 = vertcat(step1{:})
I noticed that, because some of the values are imaginary, all numbers in the combined matrix will have an imaginary component, though some of them are just 0i.
  2 commentaires
Chris Dan
Chris Dan le 23 Août 2020
Thanks :)
I have made the changes I needed to do
load('Matrices.mat')
step1 = vertcat(Identify_3{:})';
step1(1,:) = []
step1(1,:) = []
step2 = vertcat(step1{:})
Cris LaPierre
Cris LaPierre le 23 Août 2020
Ah, missed that subtlety. Well, a simple modification in the indexing is all you need.
step1 = vertcat(Identify_3{:});
step2 = vertcat(step1{:,3})

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Matrices and Arrays dans Help Center et File Exchange

Produits


Version

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by