Borrar filtros
Borrar filtros

transform 1x12 cell to 3x4 cell

1 visualización (últimos 30 días)
Alberto Acri
Alberto Acri el 23 de Jun. de 2023
Respondida: Dyuman Joshi el 23 de Jun. de 2023
Hi! I have a cell like this:
A = {'5','11','69','85','114','169','188','196','250','258','267','295'};
I want to transform it like this:
A = {'5','11','69','85';'114','169','188','196';'250','258','267','295'};

Respuesta aceptada

Dyuman Joshi
Dyuman Joshi el 23 de Jun. de 2023
A = {'5','11','69','85','114','169','188','196','250','258','267','295'}
A = 1×12 cell array
{'5'} {'11'} {'69'} {'85'} {'114'} {'169'} {'188'} {'196'} {'250'} {'258'} {'267'} {'295'}
A = reshape(A,4,[])'
A = 3×4 cell array
{'5' } {'11' } {'69' } {'85' } {'114'} {'169'} {'188'} {'196'} {'250'} {'258'} {'267'} {'295'}

Más respuestas (0)

Categorías

Más información sobre Matrices and Arrays en Help Center y File Exchange.

Productos


Versión

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by