필터 지우기
필터 지우기

Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

when trying to read from for loop, what does this mean I_origin_yiq(i,:,:,d)

조회 수: 1 (최근 30일)
Femi Joy
Femi Joy 2013년 1월 27일
마감: MATLAB Answer Bot 2021년 8월 20일
when trying to read from for loop, what does this mean I_origin_yiq(i,:,:,d)

답변 (2개)

Matt J
Matt J 2013년 1월 27일
A simpler example,
>> A=reshape(1:12,2,3,2)
A(:,:,1) =
1 3 5
2 4 6
A(:,:,2) =
7 9 11
8 10 12
>> A(1,:,2)
ans =
7 9 11

Image Analyst
Image Analyst 2013년 1월 27일
It's a 4D array, and you're specifying the first index to be i, and the last index to be d. So you're extracting a 2D plane from that array.

이 질문은 마감되었습니다.

태그

Community Treasure Hunt

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

Start Hunting!

Translated by