Effacer les filtres
Effacer les filtres

To store many double arrays in a double array

5 vues (au cours des 30 derniers jours)
Khaing Zin Htwe
Khaing Zin Htwe le 20 Avr 2016
Commenté : Khaing Zin Htwe le 22 Avr 2016
Dear all, Could you please help me how to store many double arrays in a single array? I have many double arrays with dimensions 1x512 .I want to store these array in a single array.How can I do it,please? Thanks all.

Réponse acceptée

Jan
Jan le 21 Avr 2016
a = rand(1, 512);
b = rand(1, 512);
c = rand(1, 512);
M = [a; b; c]
Having "many" variables sounds like a bad idea. Note that the matrix is more practical.

Plus de réponses (1)

Azzi Abdelmalek
Azzi Abdelmalek le 20 Avr 2016
Modifié(e) : Azzi Abdelmalek le 20 Avr 2016
  5 commentaires
Azzi Abdelmalek
Azzi Abdelmalek le 21 Avr 2016
You said it worked!
Khaing Zin Htwe
Khaing Zin Htwe le 22 Avr 2016
I meant storing many arrays with same dimension to a single array was okay. But not for different dimensions. It says that " dimensions are not consistent".THanks sir.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Multidimensional Arrays dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by