Borrar filtros
Borrar filtros

Converting a 4d vector to 2d vector

4 visualizaciones (últimos 30 días)
Basu Sau
Basu Sau el 23 de Feb. de 2019
Comentada: Basu Sau el 23 de Feb. de 2019
Dear
I would like to convert the following 4d vector to a 2d vector.
input:
Y(:,:,1,1)=0
Y(:,:,2,1)=1
Expected output:
Y1(1,1)=1
Y1(1,2)=2
Thanks,

Respuesta aceptada

Jos (10584)
Jos (10584) el 23 de Feb. de 2019
Y = randi(10,1,1,3,4)
Y2 = squeeze(Y) % remove singleton dimensions
help squeeze

Más respuestas (0)

Categorías

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

Community Treasure Hunt

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

Start Hunting!

Translated by