The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
0answers
52 views

Does order of parameters in logical operators matters equality?

I'm constructing some class that will contains a logical expression: public enum LogicalOperator { And, Or }; public class LogicalExpression { public LogicalOperator Operator { get; private set; ...
-6
votes
2answers
92 views

Working of Logical OR ( || ) in C?

I am a beginner C programmer.......... was working with Logical Operators recently. The logical OR (||) is zero whenever both operands are zero. Or the working is somewhat different. How does it ...
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
61 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
votes
2answers
62 views

Explanation about AND or OR operations in my C sharp code

I am trying to analyze some code in C#. I have some misunderstanding problem with converting numbers and may be with AND operations in C# code. I have the code as shown below. public void ...
0
votes
3answers
35 views

How to have multiple 'and' logical operators and an 'or' logical operator

It is slightly hard to explain but I want to do something that looks like this: if(a === 4 && b === true && c === "words" || "numbersandwords")DoSomething(); but it ends running ...
7
votes
5answers
100 views

precedence of ~ and ++ in java

consider this code snippet int j = 7; System.out.println(Integer.toBinaryString(j)); j = ~j++; System.out.println(Integer.toBinaryString(j)); prints 111 11111111111111111111111111111000 what i ...
1
vote
1answer
59 views

Is BitArray faster in C# for getting a bit value than a simple conjuction with bitwise shift?

1). var bitValue = (byteValue & (1 << bitNumber)) != 0; 2). using System.Collections.BitArray with a Get( bitNumber ) method What is faster? In what situations for the .NET projects ...
1
vote
2answers
48 views

Is there an implication logical operator in python?

I would like to write a statement in python with logical implication. Something like: if x => y: do_sth() Of course, I know I could use: if (x and y) or not x: do_sth() But is there a ...
-5
votes
3answers
51 views

Using Logical Operators in PHP if/else [closed]

Is it possible to use logical operators in the "then" part of the if/then statement in PHP? This is my code: if ($TMPL['duration'] == NULL) { $TMPL['duration'] = ('120' or '124' or '114' or '138'); ...
1
vote
1answer
33 views

Assigning Values Using Logical Operators

I am trying to code weekends and weekdays using numeric values, such that "Monday","Tuesday",..."Friday" = 0 and "Saturday"/"Sunday" = 1. I presently have the following data: head(bike.d) ...
0
votes
0answers
39 views

“Combine” logical expression and return the subexpressions

I need to write an algorithm that takes a logical expression as input, combines its operators and returns the subexpressions. Some examples of what I need: foo -> ["foo"] foo bar -> ...
-4
votes
5answers
86 views

Why isn't “k” incremented in the statement “m = ++i && ++j || ++k” when “++i&&++j” evaluates to true?

Aren't the individual expressions in a composite logical AND/OR expression supposed to be evaluated first before the logical operators are applied to their result?Why is ++k untouched in the ...
1
vote
2answers
62 views

Logical operator (&&) not working locally in php

I'm still a beginner of php and I have come across a bit of a problem with the logical operator &&. I have a token and secret answer script which are both text boxes. When a user submits the ...
19
votes
5answers
663 views

Confused by use of double logical not (!!) operator [duplicate]

I have some C++ code that makes extensive use of !!. I'm kinda baffled because as far as I know !! is not a operator on it's own but two ! after each other. So that would mean that !!foo is the same ...
4
votes
3answers
98 views

How logical negation operator “!” works

I am not trying to solve any particular problem, but trying to learn R and understand its logical negation operator "!" documented on page ...
1
vote
1answer
740 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 ...
5
votes
2answers
174 views

What does '//' mean in Perl? [duplicate]

I was searching in a lot of Perl books but I can't find an answer. I have this code, what I suppose it does is assign param's ticket to $ticket iff it exists if not, assign 0. my $ticket = ...
1
vote
1answer
37 views

Mixed increment operators with logical operators

I have a question concerning pre and post increments with logical operators if I have this code void main() {int i = - 3 , j = 2 , k = 0 , m ; m=++i||++j&&++k; printf("%d %d %d ...
1
vote
0answers
48 views

Is it always true to presume that the logical and operator won't evaluate the second expression if the first one is false? [duplicate]

int* ptr; //ptr may points to any location(e.g. nullptr) if(ptr != nullptr && *ptr != 1) { //A } else { //B } so are the above codes always equivalent to the following ones? if(ptr != ...
0
votes
2answers
41 views

Long logical operator comparisons

I have three variables which determine an outcome. There is only two outcomes but the outcome is based on the variables. I have thought up some long if statements but I am wondering if there is a ...
0
votes
2answers
65 views

How/Can you use both && and || in the same if statement condition?

Which logical operator get "prioritized" or "read" ahead of the other, so to say. For example: if( x=y || y=y && x=x ){} is java reading this as: One of these two: (x=y||y=y), AND (x=x) ...
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 ...
0
votes
0answers
53 views

MS Excel - obtaining and presenting results by combining logical operators, sums, pivot tables, and forms

Before I present the question, I would like to state that I have spent time researching for a solution for this problem, with partial luck. So, here's the scenario: There are X number of users, using ...
0
votes
7answers
44 views

why using NULL with logical operator throws error in JS

This is the code I am testing -- Works fine document.write( 1 && undefined ); // prints undefined document.write( 1 && 3 ); // prints 3 document.write( 1 && true ); // ...
-1
votes
1answer
62 views

php IF OR format?

This works If ($flag != 'u') { stuff.. } This also works. If ($id != 0) { stuff.. } But these don't seem to work for me.... If ( ($flag != 'u') || ($id != 0) ) { stuff.. } If ( ($flag != 'u') ...
0
votes
1answer
79 views

JSF char comparison does not work as expected

I have a JSF page which i control the renderer attribute according to managed bean property. <p:commandLink action="#{smartphoneBean.drillDown(smartphone.ldapuser,smartphone.productGrp)}" ...
0
votes
3answers
88 views

Javascript Not (a==b) || Not (c==b)

I have been trying to get the following compare operator to work with no luck. The second 'if' always executes the next statement in the code. What I want is to be able to detect when eith entryType ...
4
votes
3answers
59 views

Logical operators - short vs long forms

I am getting a bit confused by the use of the short and long forms of logical operators in R. If I have the following values A <- FALSE B <- TRUE X <- 3 Y <- 2 I would like to evaluate ...
1
vote
3answers
90 views

PHP logical operators in IF statement

I have this code: if ( ($oldTime < (time() - self::wait)) ) { if ($this->setTime()) { return true; } else { return false; } } else { return false; } Can i replace it ...
0
votes
1answer
59 views

Logical precedence in Python

Helo everybody, i have a very noob question about python precedence. I have the following code: def gcdIter(a, b): ans = min(a,b) while ((a%ans is not 0) and (b%ans is not 0)): ans -= 1 ...
2
votes
2answers
62 views

Apply logical and

I have an expression: (map some-proc some-list) which evaluates to, say, '(#f #f #f). I want to check whether all booleans in this list are true. However, (and '(#f #f #f)) returns '(#f #f #f), ...
2
votes
5answers
165 views

How to compare if a char or string variable equals a certain string?

I'm trying to get this while loop to work but for some reason, it will automatically "assume" that the user input is wrong. value is a string (should it be a char?) A,B,C are strings (should they be ...
4
votes
6answers
140 views

do | and & make any sense in java?

Rarely I bump into & and | logic operators in other's codes instead of || and &&. I made a quick research because I never used them and didn't know what is it for. A && B means if ...
1
vote
3answers
194 views

Logical / Relational Expression Optimization

I need to optimize an expression of the form: (a > b) || (a > c) I tried several optimized forms one of which is as follows: (a * 2) > (b + c) Optimization is not from the compiler's ...
0
votes
4answers
120 views

division-by-zero error?

I've tried running this code: int x = 0; double y = 1/2; if (y <= x || y/x < 1) y++; printf("%.2f", y); The output is 1.00, which is kinda surprising to me. I thought the first expression (y ...
0
votes
2answers
468 views

Issue with examples of decision and statement coverage disadvantage

I'm studying the difference between these and cannot understand the difference. It seems the same to me. Arent they the same? The risk is coming from short-circuiting, isnt it? Statement coverage ...
2
votes
3answers
68 views

&& and 'and' are the same in php? [duplicate]

I tried the following code and got && and and are different. <?php $keyWord = 2 and 3>4; $symbol = 2 && 3>4; echo $keyWord===$symbol ? 'equal' : 'not-equal'; output: ...
0
votes
3answers
59 views

check if two objects are both undefined or null in javascript

I have a method hitTest that check for collision detection and can return a Point object (if a collision is happened) or (if there is no collision) it returns null or undefined (i haven't deeply ...
1
vote
1answer
128 views

How to convert a QuadTree Cell's Spatial Index (Binary Index) to Position and Dimension values?

Sorry in advance for miss-using any terminology in this question, but basically I'm looking into creating a QuadTree that makes use of Binary Indexing, like this: As you can see in the two ...
4
votes
10answers
403 views

Why use logical operators when bitwise operators do the same?

Consider this condition: (true & true & false & false & true) == true //returns: false As you can see, the bitwise AND behavior is exactly like logical AND's: (true && true ...
3
votes
6answers
87 views

Logical OR operation with -1

Why is the output different for the following logical operations that I tried in python? -1 or 1 1 or -1 First returns -1 and second returns 1
1
vote
1answer
93 views

Unexpected behavior in TSQL trigger using cursor: AND operator with values 1 AND 0 evaluates to true

I have been trying to debug some questionable database transactions produced by a trigger and when stepping through the T-SQL have encountered unexpected results. After obtaining values from the ...
0
votes
3answers
112 views

Boolean OR in sed regex

I'm trying to replace all references of a package named boots in a configuration file. The line format is add fast (package OR pkg) boots-(any-other-text), e.g.: add fast package boots-2.3 add fast ...
1
vote
7answers
63 views

Multiple test condition in a for loop logically associated with &&

For Example: for(j=0;t1&&t2&&t3;j++); if t1 fails , will the for loop check for t2 and t3 or not?
0
votes
0answers
35 views

Work Item Alert - Remaining Work > 0

I'm trying to create an alert in Team Foundation Server that sends an email if a work item state changes to Done but the Remaining Work is greater than 0. I would want the Remaining Work operator to ...
-1
votes
4answers
151 views

Java, multiple operators in conditional statement [closed]

I am fairly new to java and i'm trying to write this simple program to calculate the cost of admission for single and multiple employees. this is the error message im getting about the operators in ...
2
votes
6answers
101 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] ...
0
votes
3answers
163 views

Python “if” statement ignored [duplicate]

Possible Duplicate: Multiple conditions with if/elif statements I'm triggering loop within loop in Python, if one of the multiple conditions ("or") is met. The script seems to skip the "if" ...
1
vote
1answer
74 views

Generating a logical vector from two numeric vectors - R

I'm very new to R and having difficulty trying to generate a logical vector c from two numeric vectors a and b of the same (arbitrary) size where c contains either TRUE or FALSE depending on whether ...

1 2 3 4 5 6