필터 지우기
필터 지우기

Converting a 4d vector to 2d vector

조회 수: 4 (최근 30일)
Basu Sau
Basu Sau 2019년 2월 23일
댓글: Basu Sau 2019년 2월 23일
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,

채택된 답변

Jos (10584)
Jos (10584) 2019년 2월 23일
Y = randi(10,1,1,3,4)
Y2 = squeeze(Y) % remove singleton dimensions
help squeeze

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Data Type Conversion에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by