Tagged Questions
0
votes
3answers
41 views
Logical operators, how are these evaluated?
I'm going through past papers to revise and there was a question that wasn't explained and I can't seem to find much online in regards to this question/topic.
Binary values
a = 00110011
b = 10101010
...
0
votes
0answers
58 views
Combine two Binary images
I have obtained two individual segmentations - initial and the one after splitting clumps of cells .
(Original image - Initial segmentation)
I'm stuck up now as I am unable to combine these two ...
1
vote
1answer
693 views
Operands to the and && operators must be convertible to logical scalar values
I have a simple problem that I'm looking for a fast implementation in Matlab. I have an array of values, let's say:
a = floor(rand(5,5).*255)
I then have a similarly sized threshold array, let's ...
0
votes
4answers
69 views
How to compute a mean of a specific column of a matrix, excluding a given value IN MATLAB
I have a 1000x7 matrix whose columns present some values equal to -99.
I want to compute the mean of each column separately because I'm building a table using fprintf, but I want the mean to be ...
2
votes
6answers
96 views
Matlab index to logic indexing
I have given a list of indices, e.g. i = [3 5] and a vector v = 1:6. I need a function f which returns the logical map for the vector v given the indices i, e.g.:
f(i, length(v)) = [0 0 1 0 1 0]
...
5
votes
5answers
173 views
What's the difference between | and || in MATLAB?
What is the difference between the | and || logical operators in MATLAB?
0
votes
2answers
378 views
Why can I not chain logical comparisons in an if statement?
I'm trying to execute a block of code if one of several conditions is met. Again, for clarity, if any of the conditions are true, I'd like for the code to execute (chain of logical ORs).
When I type ...
0
votes
1answer
117 views
How to use a logical operator over a boolean array?
I have duly searched the documentation and SE, but have failed to find out the solution: given an arbitrarily large vector of boolean values, how to return e.g. the logical AND of given values?
I ...
4
votes
2answers
6k views
How to solve && operands to logical scalar
After I run the code in matlab, I encounter this error and unsure how to solve it. How can I solve this problem.
Warning:
Operands to the || and && operators must be convertible to ...
3
votes
1answer
98 views
Vectorizing the concatenation of binary operations
Say I have a cell array, that holds a stack of logical matrices, e.g.
matrices =
[225x400 logical]
[225x400 logical]
....
[225x400 logical]
The cell array can potentially hold ...
21
votes
8answers
20k views
What's the difference between & and && in MATLAB?
What is the difference between the & and && logical operators in MATLAB?
