transform a vector to a cell array

Hi,
c=[5 7 1 9 10]; I want to create a cell from this vector as:
d={[5 7 1] [7 1 9] [1 9 10]};
Thanks in advance.

Réponses (2)

Azzi Abdelmalek
Azzi Abdelmalek le 29 Déc 2013
Modifié(e) : Azzi Abdelmalek le 29 Déc 2013
c=[5 7 1 9 10];
m=3;
out=arrayfun(@(x) c(x:x+m-1),1:numel(c)-m+1,'un',0)

4 commentaires

allnab
allnab le 30 Déc 2013
hi, it does not give the desired result {out} cell
allnab
allnab le 30 Déc 2013
{out} cell
What do you mean? The result is exactly what you asked for. to see the result type
celldisp(out)
allnab
allnab le 30 Déc 2013
Excuse me it works correctly now
thank you

Connectez-vous pour commenter.

Andrei Bobrov
Andrei Bobrov le 29 Déc 2013
d = num2cell(c(hankel(1:3,3:numel(c))),2)

3 commentaires

allnab
allnab le 30 Déc 2013
hi, error message:
??? Attempted to access r(1); index out of bounds because numel(r)=0.
Error in ==> hankel at 26 elseif c(nc) ~= r(1)
This error is shown when the second input to hanker is empty:
hankel(1:3,[])
In the code above this occurs because,
  • 3:numel(c) is empty, because,
  • numel(c) is less then 3, so,
check the contents of c !
allnab
allnab le 30 Déc 2013
Excuse me it works correctly now
thank you

Connectez-vous pour commenter.

Catégories

En savoir plus sur Matrices and Arrays dans Centre d'aide et File Exchange

Tags

Question posée :

le 29 Déc 2013

Commenté :

le 30 Déc 2013

Community Treasure Hunt

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

Start Hunting!

Translated by