1
vote
2answers
152 views

Logical operator PHP variable equals A or B or C, it dose not evaluate as either of them

I am currently using ftp_rawlist to output every file and folder including subfolders in the root directory of a remote site. The output of the files in the array include the permissions, the user etc ...
-4
votes
7answers
104 views

For Loops and Logical AND + OR

Why does this code take not run? for(int i=0;i<11;i++){ for(int j=0;j<11;j++){ if(i>0){ ...
0
votes
3answers
704 views

Selecting a subset of an array given logical vector in Fortran

In Fortran, is it possible to select certain parts of the an array by using some vector of logical values instead of the indices? For example like this: iszero(1) = 0 iszero(2) = 1 iszero(3) = 0 sum0 ...
0
votes
1answer
116 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 ...
1
vote
2answers
272 views

Ruby Logical Operators - Elements in one but not both arrays

Let's say I have two arrays: a = [1,2,3] b = [1,2] I want a logical operation to perform on both of these arrays that returns the elements that are not in both arrays (i.e. 3). Thanks!
0
votes
3answers
203 views

Pop not reducing array.length after logical operator

I have this bizzare behavior which I've never seen and don't understand. I'm going through an array using arrayname.length as the control for a while loop. Which normally works as expected but this ...
0
votes
6answers
108 views

how to make a logical OR of an area memory pointed by an array

supposing to have two arrays a[N],b[N] containing only 0 and 1 values, is there a way to calculate c = a || b without a loop like the following (in C)? #define N 10 char a[N]; char b[N]; char c[N]; ...