Covert cell array to array

1 visualización (últimos 30 días)
Mo H
Mo H el 3 de Abr. de 2020
Comentada: Mo H el 3 de Abr. de 2020
Hello,
I have some data stored in a cell array and the size the cell is not known. I want to convert the cell array into array.
Basically, I want to create a for loop that reads the the previous array in the cell, determine it it size, and then store the data in array.
For example,
CellArrar = {[1 5 7;2 6 8],[1 5 8; 2 5 7],[1 8 8]}
Array = [ 1 5 7; 2 6 8;3 5 8; 4 5 7;5 8 8]
Thank you a lot

Respuesta aceptada

Birdman
Birdman el 3 de Abr. de 2020
Something like this?
Array=cell2mat(CellArrar.')
  3 comentarios
Birdman
Birdman el 3 de Abr. de 2020
Array(:,1)=1:size(Array,1)
Mo H
Mo H el 3 de Abr. de 2020
Thank you

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Cell Arrays 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