how to convert cell to array

10 visualizaciones (últimos 30 días)
RuiQi
RuiQi el 5 de Dic. de 2016
Respondida: Jan el 5 de Dic. de 2016
I have 1 x 7 cell. Each cell has 20000 x 1 array. How do I take 1st column and 3rd 4th 5 7 7 column ? So result becomes 20000 x 5 array ?

Respuesta aceptada

Azzi Abdelmalek
Azzi Abdelmalek el 5 de Dic. de 2016
Editada: Azzi Abdelmalek el 5 de Dic. de 2016
If v is your cell array
out=cell2mat(v([1 3 4 5 7 ]))

Más respuestas (1)

Jan
Jan el 5 de Dic. de 2016
out = cat(2, v{[1 3 4 5 7]});

Categorías

Más información sobre Data Types en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by