Subscripted assignment dimension mismatch

Hello, I'm trying to do the following assignment and get an error: "Subscripted assignment dimension mismatch" "masking" is new veriable and this is the first assignment to it. "indx" is as follow: 300x10x2011 logical
masking(:,:,1)=indx;
what is wrong?

 Akzeptierte Antwort

KL
KL am 25 Nov. 2017

0 Stimmen

You're trying to assign a 3D matrix into a 2D one. Try,
masking(:,:,:,1) = indx;

Weitere Antworten (0)

Kategorien

Mehr zu Line Plots finden Sie in Hilfe-Center und File Exchange

Gefragt:

am 25 Nov. 2017

Kommentiert:

am 25 Nov. 2017

Community Treasure Hunt

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

Start Hunting!

Translated by