How can I reshape single column vector list into equally sized matrix columns

8 visualizzazioni (ultimi 30 giorni)
Hi,
I have a single column vector variable with a list of 26599 elements. I want to reshape this list into a matrix of equally sized columns of 512. The issue is that the number 26599 isn't divisible by 512 and so I get an error. Hence, I want to reshape the vector into matrix colums where all columns have the size of 512 except for the last one.
How would I go about doing this?
I tried the reshape function but that didnt work because of the issue mentioned above.
>> R = reshape(sample_test,512,[]);
Error using reshape
Product of known dimensions, 512, not divisible into total number of elements, 26599.
Thank you!

Risposta accettata

Voss
Voss il 9 Gen 2022
You can't have a matrix with different size columns, but you could fill the last column with NaNs:
sample_test = ones(520,1);
% append NaNs to sample_test up to the next multiple of block_size
block_size = 512;
N = block_size*ceil(numel(sample_test)/block_size);
sample_test(end+1:N) = NaN;
R = reshape(sample_test,512,[])
R = 512×2
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 NaN 1 NaN
  5 Commenti
Voss
Voss il 9 Gen 2022
You can make sample_test a column vector like this:
sample_test = sample_test(:);
and then use my code on that.

Accedi per commentare.

Più risposte (1)

Torsten
Torsten il 9 Gen 2022
Modificato: Torsten il 9 Gen 2022
s = mod(26599,512);
n = 26599 - s;
m = n/512;
R = horzcat(reshape(sample_test(1:n),512,m),vertcat(sample_test(n+1:end),NaN(512-s,1)));

Categorie

Scopri di più su Matrices and Arrays in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by