Why am I getting Subscript indices must either be real positive integers or logicals?
Show older comments
Here is the part of my code giving me problems:
channelToCorrelate = A; %A is where the modes are in real space
correlationOutput = normxcorr2(mode(:,:A), Image(:,:, channelToCorrelate));
subplot(2, 2, 3);
imshow(correlationOutput, []);
axis on;
it brings this
Subscript indices must either be real positive integers or logicals.
Error in crosscorrelationcode (line 26)
correlationOutput = normxcorr2(mode(:,:,1), Image(:,:, channelToCorrelate));
A is a matrix of numbers including complex numbers. I thought that was the problem so i tried to use
correlationOutput = logical (correlationOuput)
and
correlationOutput = round(correlationOuput)
I got the same error both times so I then used
channelToCorrelate = logical(A)
but that didn't work because A has comle values and round just brought the same error. What am missing?
2 Comments
Geoff Hayes
on 14 Jul 2015
Neo - what can you tell us about channelToCorrelate and image? The error is telling you that there is a problem at line 26, so why not put a breakpoint there and re-run the code. When you get to that breakpoint you will be able to step through the code and examine the variables that are being manipulated.
Neo
on 14 Jul 2015
Accepted Answer
More Answers (0)
Categories
Find more on Creating and Concatenating Matrices 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!