"Operands to the || and && operators must be convertible to logical scalar values" occurring with integer comparisons
2 views (last 30 days)
Show older comments
Floris van den Broek
on 10 Apr 2017
Commented: Floris van den Broek
on 10 Apr 2017
I have written a piece of code that essentially has this structure:
function [output] = spectralSVD(S,thr)
% Input:
% S: [mxn] complex double
% thr: real double, value between 0 and 100
E_tot = trace(abs(S));
n_sv_max = min(size(S));
n_sv = 0;
E_rec = 0;
while E_rec < thr && n_sv <= n_sv_max
n_sv = n_sv+1;
E_rec = 100*cumsum(diag(abs(S(1:n_sv,1:n_sv))))/E_tot;
end
At this point, the code crashes: "Operands to the and && operators must be convertible to logical scalar values."
So as far as I understood, the && would be appropriate here since both conditionals are single-value comparisons (none of E_rec, thr, n_sv and n_sv_max are vectors or matrices). However, I still get the error message mentioned in the title. I have tried converting all of the aforementioned variables with the uint8() function (even though that does not do exactly what I want), but to no avail. It would appear that I misunderstood the explanation I read in other questions on the same error message.
Could anyone explain me where my thought process is going wrong, and how to appropriately fix my code? It would be very much appreciated!
0 Comments
Accepted Answer
Guillaume
on 10 Apr 2017
Edited: Guillaume
on 10 Apr 2017
"both conditionals are single-value comparisons (none of E_rec, thr, n_sv and n_sv_max are vectors or matrices)"
The first time through the while loop, they are. The second time... not so much. See the output of:
S(1:n_sv,1:n_sv)
with n_sv = 0 as you've declared.
The best way for you to solve this sort of problems is to use the debugger to check what the values of the variables actually are as opposed to what you think they are.
I suspect n_sv should start at 1.
2 Comments
dbmn
on 10 Apr 2017
This is correct, as your n_sv increases, the size of your E_rec increases accordingly.
You can try this with the following code and putting a debug breakpoint on your while condition
rng(5); spectralSVD(rand(10), 10)
The solution in your case is pretty simple. Just use sum instead of cumsum and you should be fine (cumsum will return a vector if you have a vector as an input).
More Answers (1)
Thorsten
on 10 Apr 2017
Check before the while
whos E_rec thr n_sv n_sv_max
I am quite sure that not all variables have Size 1x1 and Class double.
0 Comments
See Also
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!