Clear Filters
Clear Filters

Subscripted assignment dimension mismatch

4 views (last 30 days)
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

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

More Answers (0)

Categories

Find more on Entering Commands in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!