The tag has no wiki summary.

learn more… | top users | synonyms

-3
votes
6answers
76 views

If equivalent without using conditional operations and other loop methods java

int function(int a, int b, int c){ if(a==c) return a; else return b; } Question is to achieve a same o/p without using if, while, do, for, ...
0
votes
1answer
17 views

Reverse algorithm to Reverese polish notation

I know how RPN works, i.e. we have input: a + b * c and output is bc*a+ Is it easy to create algorithm which shows me what is the last computation of this equation? I mean that I want to know ...
-11
votes
0answers
94 views

How to checks if the given logical expression is a tautology? [closed]

I want a program in order to checks if the given logical expression is a tautology or not . in C++ or Java . ------ about tautology : is an logical expression that's true at all . ------ and : A or : ...
0
votes
1answer
19 views

Delete all related records in another table when editing a record

I have 2 tables, one is news and another one is tags . I store the tags of news records in tags table. my tags table structure is : id (int) tag (varchar) news_id (int) in add/edit news form I have ...
0
votes
0answers
29 views

Logical/Relational schemas

Having a big of trouble getting my head around UML, logical schemas etc. The first pic above my requirements are to design a relational table schema for the top pic. To me that means something along ...
0
votes
1answer
54 views

Java - looping through LinkedhashMap and get the value

I have the following LinkedHashMap in which i put values in the following way: if (preAuthorizeAnnotation != null) { requestMappingValues = requestMappingAnnotation.value(); // to get the url ...
3
votes
2answers
54 views

Subset data.table by logical column

I have a data.table with a logical column. Why the name of the logical column can not be used directly for the i argument? See the example. dt <- data.table(x = c(T, T, F, T), y = 1:4) # Works ...
0
votes
0answers
26 views

Error: no applicable method for 'as.quoted' applied to an object of class “logical”?

I have the following code: RIL <- subset(census, trt == "RIL") RIL.remain <- subset(RIL, dbh1 != "NA" & dbh9 !="NA") RIL.class.1 <- subset(RIL.remain, dbh2 >10 & dbh2 <19.99, ...
0
votes
1answer
71 views

Selecting strings and using in logical expressions to create new variable - R

I have a categorical variable indicating location of flu clinics as well as an "other" category. Participants who select the "other" category give open-ended responses for their location. In most ...
0
votes
2answers
66 views

How to find JS code is working in browser?

I am using bootstrap modal, I dont know where I have put the js code that triggers the modal after clicking the button. jQuery('#signin').modal('show'); I checked each file...even checked each JS ...
6
votes
5answers
108 views

Replacing IF with a logical expression in PHP

I was refactoring some old code when I stumbled upon a construct similar to this: // function bar() returns a value // if the value is an instance of customException class, terminate with error code ...
1
vote
1answer
34 views

How to create Mountpoints for Logical Volumes

I have a script that I want to help me create a Logical Volume Manager with partitions outlined below: Partitioning scheme for 120 GB HD enter code here# Partition clearing information enter code ...
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 ...
1
vote
1answer
74 views

Matlab: uitable with Logical cell and default value of 'true'

I'm trying to build a uitable 1x2. Cell(1,1) format is a 'logical'; Cell(1,2) is 'char' handles.SeedTable = uitable(... 'ColumnName',{'Shuffle' 'Seed#'},... ...
-1
votes
3answers
87 views

Using Logical AND Operators && in foreach php

I have the following code for an image gallery : $directory = 'some path'; $thumbs_directory = 'some path'; foreach (glob($directory.'/*.{jpg,jpeg,png,gif}', GLOB_BRACE) as $file) foreach ...
0
votes
0answers
57 views

MATLAB: for-loop vectorization (logiacal values)

I would like to vectorize the following for-loops. The idea is to record in the LT matrix the links specified in the NEc and FEc variables (logical variables of zeros and ones representing links). LT ...
0
votes
1answer
40 views

Openvms C++ - how to pass values to the environment

I am trying to pass values from a C++ program on VMS. $DESCRIPTOR( lname, (char*) "A" ); $DESCRIPTOR( lvalue, (char *) "Hello World" ); lib$set_logical( &lname, &lvalue ); lib$set_symbol ...
0
votes
2answers
85 views

subsetting rows with logical comparisons when missing observations are present

I was attempting to subset rows from a data frame containing missing observations and encountered behavior I do not understand. I can select rows that meet certain criteria. However, I could not ...
0
votes
1answer
175 views

How to get LBA(logical block addressing) of a file from MFT on NTFS file system?

I accessed the $MFT file and extracted file attributes. Given the file attributes from MFT, how to get a LBA of file from the MFT record on NTFS file system? To calcuate LBA, I know that cluster ...
0
votes
1answer
20 views

Logical error in code

So here is some code that I am supposed to fill out which was easy enough. #define MAX_NAME_LEN 128 typedef struct { char name[MAX_NAME_LEN]; unsigned long sid; } Student; /* return the name of ...
0
votes
4answers
145 views

R - Logical operators

Please can anyone advise how I can turn the following statement into one that will do the same thing but NOT using ifelse please? <-ifelse(y>=50, 0.2*x+0.8*y, ifelse(y<50 & x>70, ...
0
votes
0answers
51 views

lba read and write

I am trying to read and write to a bare hard drive by using LBA values via OSX. I do not care about file systems. I just want to write to the hard drive directly. If it is not possible via OSX I could ...
-1
votes
4answers
144 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 ...
0
votes
1answer
455 views

Logical Address to Physical Address in Page Table

I really dont know where to start in the following question and how scoured the internet for hints. If anyone could point me in the right direction or let me know a way of tackling this question it ...
0
votes
3answers
81 views

How can I convert these premises into a logical argument?

I have the following three premises: P or Q P => R Q => R The symbol => represents the 'implies' operation. I understand that these premises constitute a dilemma, but how can they be combined ...
0
votes
1answer
88 views

how do I list all US State names that have any two consecutive vowels (a, e, i, o, u). using the character vector state.name?

This is what I have but it returns all 50 states grep("[a]|[i]|[o]|[u]",state.name, value=TRUE)
-4
votes
2answers
63 views

Number picking algorithm [closed]

Consider the following method of picking a number from an array. Choose a positive integer n. Visit n elements of the array (looping around if necessary) and delete the nth element visited. Repeat the ...
0
votes
0answers
36 views

Oracle 11gR3 - Logical standby database

I created logical standby database in ORACLE 11gR3 version, but I found that SQL Apply process doe not happen, it seems that it immediately stops after saying command :- ALTER database start logical ...
0
votes
3answers
33 views

Amount of logical combinations

My brain seems to be stoped, and I am looking for a help. I have the following variables: $start_t = 1; $start_n = 2; $end_t = 6; $end_n = 5; and I like to check all the logical combinations ...
0
votes
3answers
84 views

Python: logical expression is False, but if doesn't care [duplicate]

Possible Duplicate: Why does “[] == False” evaluate to False when “if not []” succeeds? How is this possible that logical test a==True produces False, but if a: works? Please see code below ...
2
votes
1answer
38 views

Best Option for resumable script

I am writing a script that executes around 10 back-end processes in sequence, depending on if the previous process was executed without any errors. Now let's assume the scenario, in which lets say ...
4
votes
4answers
97 views

In C is & shorthand for logical and(&&)?

Sometimes I want to do something like this (with i and j being ints). (if i==4 && j==9) { ... } Where it'll go through the brackets if i equals 4 and j equals 9. I've been using a single ...
0
votes
1answer
77 views

Why is ASP.Net validation only working partially?

I am trying to write a form with validation using Visual Basic.Net with ASP. I dropped a RegularExpressionValidator into a form field for testing and assigned the attributes through the Visual Basic ...
0
votes
3answers
67 views

Some templates in Javascript

I don't understand how create second logical structure with Javascript language: Is a webpage, and when it's loading(DOM fully don't ready yet) is executing javascipt code where: <script> ...
-2
votes
3answers
77 views

Java Logical Array Trouble

I am trying to make an Array so that it contains 10 different integers 0-9. I have this: for (int i = 0; i < perm.length; i++) { int num = (int) (Math.random() * 9); boolean check = ...
0
votes
0answers
92 views

What is this code in a logical programming language? [closed]

For an essay, I am explaining the differences between procedural, functional and logicalprogramming. I am doing this with some examples, however I am currently stuck. The code below (C#) is my ...
1
vote
1answer
92 views

Plausible scenario for Prolog or any other logical programing language

I'm reading up on logical programming, and as someone who does computer animation, i am wondering if the following scenario is plausible in Prolog or any other logical programing language: Lets say I ...
3
votes
3answers
158 views

I'm curious if Logical Program can do algebra

I read a brief article about Prolog and Logical Programming. I'm curious if Logical Program can do algebra. Like would you be able to ask what the Variable of X is in the equation 5+X = 7 and get an ...
0
votes
5answers
95 views

C - Logical Compound Operators

Quick question about logical compound operators in C ... Is the compound operator '&=' logical or bitwise AND ? In other words, is a &= b the same as: a = a & b a = a && b ? ...
1
vote
3answers
57 views

How to check whether two conditions/rules match?

I'm looking for a solution for the following problem. I have some items and each item has a rule and now i want to know which item matches another item. say item 1 has the rule 1 and item 2 has the ...
0
votes
0answers
24 views

How to program a logical thermostate using only basic operators

I would like to design a very simple thermostat but using only logical operators and comparison operators. My system should work as following: Output1= Logical conditions I.e. Ouput1 = T1<30 ...
1
vote
2answers
371 views

How I can display 3D logical volume data matlab [duplicate]

Possible Duplicate: Matlab 3d volume visualization and 3d overlay I have a set of contour data of image slices.I obtained 3D logical volume data (582x582x6) by surface2volume.m. How can I ...
2
votes
3answers
102 views

Why does JavaScript allow both && (logical) and & (bitwise) in conditional statements?

I recently found a piece of javascript which was evaluating null / undefined like so: // The single & is on purpose! if(x !== null & x !== undefined) { // Do this... } This looks like a ...
0
votes
2answers
53 views

How to perform multiple operations on a list of user submitted variables in C++

I'm new to C++ programming and am attempting what it says in the title. Basically, the program takes a few basic baseball statistics inputted by the user, and performs a few operations on them, ...
0
votes
1answer
38 views

Most suitable programming language for listing all possible bool sequences

I need to list all bool sequences of a certain length (say, 100), which satisfy a given set of rules. An example for a rule is: if bit10=bit20=1, then bit35=0. I wrote a C++ program which enumerates ...
3
votes
3answers
610 views

how to create logical matrix directly in matlab

I have so far been using a = logical(zeros(10,10)) to create logical matrix. Is there a way to create it directly?
-4
votes
1answer
218 views

bool output is 205 instead of true or false [closed]

I am currently trying to output the direction using Boolean values. 1 is true. 0 is false. 1 signifies the elevator going up. 0 signifies the elevator going down. I want the output to be : Node ...
4
votes
1answer
128 views

MySQL logical operation SELECT query

I have the following query and I seem to know what is causing the error however I lack experience to fix it myself. SELECT f.id, f.food_name, tm.resource_id, tm.tag_id, t.name FROM tag as ...
2
votes
1answer
146 views

Logical to char

I have a char array representing a binary number for example bit <1x8 char> '00110001' And I want to replace the last char with a logical value, but I can't, the following error is triggered: ...
0
votes
1answer
151 views

Questions on Program execution flow

I was studying operating system concepts from galvin's sixth edition and i have some questions about the flow of execution of a program. A figure explains the processing of the user program as: ...

1 2 3