Borrar filtros
Borrar filtros

Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

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

1 visualización (últimos 30 días)
Femi Joy
Femi Joy el 27 de En. de 2013
Cerrada: MATLAB Answer Bot el 20 de Ag. de 2021
when trying to read from for loop, what does this mean I_origin_yiq(i,:,:,d)

Respuestas (2)

Matt J
Matt J el 27 de En. de 2013
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 el 27 de En. de 2013
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.

La pregunta está cerrada.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by