Azzera filtri
Azzera filtri

Info

Questa domanda è chiusa. Riaprila per modificarla o per rispondere.

how to merge the matrices in one matrice?

1 visualizzazione (ultimi 30 giorni)
Ararat Cetinkaya
Ararat Cetinkaya il 8 Mar 2020
Chiuso: MATLAB Answer Bot il 20 Ago 2021
I want to merge class matrix in one matrix in for loop but it gives error like Unrecognized function or variable 'allclass'.
for d =1:3 ;
class(:,1:3) = [num(num(:,3)==d,1:3)];
allclass= [allclass ; class];
end
  1 Commento
David Hill
David Hill il 8 Mar 2020
An example with your data would be helpful. Look at reshape() function.

Risposte (1)

Chidvi Modala
Chidvi Modala il 11 Mar 2020
"Unrecognized function or variable 'allclass'" error may occur because allclass variable is not initialized before using it. So, you can initialize "allclass" variable with an empty array. You can make use of the following example
num = [3 2 1;2 2 2; 1 2 3];
allclass = [];
for d =1:3 ;
temp = num(num(:,3)==d,1:3);
allclass= [allclass ; temp];
end

Questa domanda è chiusa.

Tag

Prodotti

Community Treasure Hunt

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

Start Hunting!

Translated by