Effacer les filtres
Effacer les filtres

Splitting a vector into vectors of different length

9 vues (au cours des 30 derniers jours)
Mojtaba
Mojtaba le 16 Juil 2014
I want to split a vector with 90 arrays to 5 vectors with different lengths. The length of each vector is determined according to a normalized length like this: nl=[0.1642 .1516 .1259 .5583] Therefore the length of each vector is length=90*[0.1642 .1516 .1259 .5583]. But these lengths are not integer, and if i try to round this the length of will not equal to 90, it might be 89, 90, 91 or even 92 due to round of error.                        I would appreciate if anyone could assist me to write a code for this.
  2 commentaires
Geoff Hayes
Geoff Hayes le 16 Juil 2014
You may need to provide an example. What do you mean by split a vector with 90 arrays?
Alfonso Nieto-Castanon
Alfonso Nieto-Castanon le 17 Juil 2014
I am guessing you mean "a vector with 90 elements" instead of "a vector with 90 arrays"?

Connectez-vous pour commenter.

Réponse acceptée

Alfonso Nieto-Castanon
Alfonso Nieto-Castanon le 16 Juil 2014
Modifié(e) : Alfonso Nieto-Castanon le 17 Juil 2014
This is interesting, perhaps something like this would do (this implements a greedy correction of your initial estimate of the desired lengths of each segment until the segment lengths add-up to the proper value):
nl = [0.1642 .1516 .1259 .5583]; % normalized lengths of each segment
N = 90; % total length of data to segment
n = round(nl*N); % initial lengths of each segment
while sum(n)~=N % if lengths do not add-up to N
d = sign(N-sum(n)); % direction of change
[~,i] = min(abs(n+d-N*nl)); % best segment to modify
n(i) = n(i)+d; % change that segment length
end
Then you can simply split your original vector using mat2cell:
x = randn(1,90);
y = mat2cell(x, 1, n);

Plus de réponses (0)

Catégories

En savoir plus sur Creating and Concatenating Matrices 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