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?

 Accepted Answer

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

1 Comment

Thanks a lot! Helped me understand my mistake...:)

Sign in to comment.

More Answers (0)

Categories

Asked:

on 25 Nov 2017

Commented:

on 25 Nov 2017

Community Treasure Hunt

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

Start Hunting!