Create a matrix with specif size

3 Ansichten (letzte 30 Tage)
Guilherme Lopes de Campos
Guilherme Lopes de Campos am 23 Apr. 2020
Kommentiert: Ameer Hamza am 23 Apr. 2020
Hi MATLAB community,
I have a array with the size (360x1), I would like to organize into a matrix with sizes (30 rows and 12 columns) using the data available on the array, organize sequencially. Which the function I can use for made this?
Thank you very much
Guilherme

Akzeptierte Antwort

Ameer Hamza
Ameer Hamza am 23 Apr. 2020
Bearbeitet: Ameer Hamza am 23 Apr. 2020
See reshape()
B = reshape(A, 30, 12); % A is 360x1 and B is 30x12
It will organize the data column-wise, i.e., fill the first column, then second, and so on.
  2 Kommentare
Guilherme Lopes de Campos
Guilherme Lopes de Campos am 23 Apr. 2020
Thank you very much to help!
I am very grateful,
Guilherme
Ameer Hamza
Ameer Hamza am 23 Apr. 2020
I am glad to be of help.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Matrices and Arrays finden Sie in Help Center und File Exchange

Produkte


Version

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by