The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
6answers
123 views

Little endian or Big endian

#include <stdio.h> union Endian { int i; char c[sizeof(int)]; }; int main(int argc, char *argv[]) { union Endian e; e.i = 1; printf("%d \n",&e.i); ...
0
votes
2answers
48 views

calculating arithmetic expressions in assembly x86

i have an assembly x86 question INCLUDE Irvine32.inc .data day WORD 0 month WORD 0 year WORD 0 count BYTE 0 prompt1 BYTE "enter month: ",0 prompt2 BYTE "enter day: ",0 prompt3 BYTE "enter an year: ...
0
votes
4answers
52 views

Modulus division when first number is smaller than second number

I apologize if this is a simple question but I'm having trouble grasping the concept of modulus division when the first number is smaller than the second number. For example when 1 % 4 my book says ...
-2
votes
3answers
68 views

C unsigned char arithmetic operation does not works as expected

Here is the my snippet of code; Npp8u * imageHost; typedef unsigned char Npp8u; ... for (int i=0;i<nHeight;++i) { for (int j=0;j<nWidth;++j) { ...
0
votes
1answer
19 views

Adding two params of a predicate that aren't static

I'm trying to add two numbers together add(num1, num2, output) :- output is num1 + num2. Let's say X is 1 and Y is 3, but they're not static, just variables. add(X, Y, out). I get a ...
3
votes
2answers
75 views

Scientific Notation Conversion - Scheme

I am trying to do simple subtraction arithmetic on two very large numbers. (- 1.8305286640724363e+023 (floor 1.8305286640724363e+023)) When I do this, I get a result of 0.0. I'm expecting an output ...
0
votes
3answers
78 views

Arithmetic Recursion

I'm a beginner to scheme and I'm trying to learn some arithmetic recursion. I can't seem to wrap my head around doing this using scheme and producing the correct results. For my example, I'm trying to ...
1
vote
2answers
49 views

javascript too many decimals doing substractions [duplicate]

I'm doing a simple substraction with Javascript and the result doesn't match with the real result: <html> <head> <title></title> </head> <body> <table> ...
1
vote
3answers
196 views

Java Scientific Calculator Regular Expression

What will be the regular expression in java for like this expression (3+2)+23/12-(43/54) in which left parentheses is create than user will be able to put right one and if left parentheses is not ...
1
vote
1answer
90 views

Arithmetic operations inside the parenthesis javascript

Hi Please help me to resolve this issue var str = '10+20-10-2'; var numbers = str.replace(/ /g, '').split(/[-+*\/]/g); var operators = str.replace(/ /g, '').split(/\d*/g); ...
1
vote
1answer
113 views

How to do arithmetic operations in binary with Java?

For a Java assignment I am required to be able to pass any number that will be introduced as a string through the command line (no matter how big) into binary. Then generate methods that will allow ...
-1
votes
1answer
31 views

How do you calculate integers overflow?

I try to calculate, based on given parameters, integer overflow. for example, if I have an integer than is <= 200, but when I insert it to an unsigned int, it will be > 200. What is the actual ...
0
votes
1answer
143 views

Performing Arithmetic Operations On String In C#

Im a C# beginner here,Im taking string from textbox and applying following algo,but the breaking of operands and operator doesnt work.. string cal = "225+699"; char[] all= ...
-2
votes
1answer
69 views

Variables as commands

I want to be able to use a set of variables that can stand in for mathematical operators. I am attempting to create a calculator as a learning exercise. I figure it would not be good to have the ...
0
votes
1answer
45 views

How to prevent arithmetic on null values?

Using Oracle11g: If the column is null, I want to exclude the arithmetic on the column. In this case, how can I get lag_diff for seqno=1 to be null? with detail_records as ( select 1 seqno, ...
0
votes
2answers
362 views

Bash script checking cpu usage of specific process

First off, I'm new to this. I have some experience with windows scripting and apple script but not much with bash. What I'm trying to do is grab the PID and %CPU of a specific process. then compare ...
2
votes
3answers
88 views

What's more costly on current CPUs: arithmetic operations or conditionals?

20-30 years ago arithmetic operations like division were one of the most costly operations for CPUs. Saving one division in a piece of repeatedly called code was a significant performance gain. But ...
0
votes
3answers
49 views

Bad practice to initialize and calculate in a single variable? Visual C++

Is it bad practice to initialize and do arithmetic within a variable? i.e say I have multiple rooms of different area dimensions that I must find the area of: (example in feet) double room_area1 = ...
0
votes
1answer
68 views

C, rounding problems. UWORD, ints, and doubles

I have a few questions as to what the results of these operations are. Firstly, if I have two integers and divide them and save the result in a double. Will there be any rounding issues such that 1/2 ...
13
votes
2answers
368 views

In R why is factorial(100) displayed differently to prod(1:100)?

In R I am finding some odd behaviour that I can't explain and I am hoping someone here can. I believe that the value of 100! is this big number. A few lines from the console showing expected ...
6
votes
2answers
172 views

Basic arithmetic operations on int - Java

I recently noticed a idiosyncrasy of Java regarding basic arithmetic operations in Java. If I were to assign byte a = 3; byte b = 4 and a byte c = a*b;, Java will not compile and throws a type ...
1
vote
3answers
115 views

Python error in basic subtraction? [duplicate]

Possible Duplicate: Python rounding error with float numbers python maths is wrong I can't get Python to correctly do the subtraction 1 - 0.8 and assign it. It keeps coming up with the ...
2
votes
2answers
139 views

2 or more digit numbers with delimiters in java

I have this basic program that works pretty well; when I enter single diget numbers. but when doing an expression like 1337 - 456 + 32 the program doesn't move on and acts like I did nothing. It ...
0
votes
1answer
159 views

Implement an Arithmetic Parser in Prolog

I have the following Prolog code: expression-->first,operator,second. first-->[X]. operator-->['+'];['-']. second-->[X]. After compilation, the machine responds with "yes" in the ...
7
votes
2answers
103 views

How to be warned about potential arithmetic errors due to type conversion?

I am working on a calculation module using C#, and I bumped on this : double v = 4 / 100; I know this is a wrong initialization that returns v = 0.0 instead of v = 0.04 The c# rules says I must ...
3
votes
2answers
379 views

convert scientific notation to decimal in bash

I would like to convert a number that is stored in scientific notation into a floating point decimal, so I can then perform some comparisons on the data. This is being done in a bash script - here is ...
2
votes
1answer
196 views

arithmetic vector operations in Java

I have four vectors have same dimension (1 dimensional) and same size. My vectors are consturcated as: Vector<Integer> v1=new Vector<Integer>(5); Vector<Integer> v2=new ...
1
vote
3answers
147 views

VHDL syntax to drop multiplication remainder

I want to multiply a U4.10 format fixed-point number by a U0.8 format constant and truncate my result to a U4.10. What I think I want is something like: signal A, B : unsigned(13 downto 0); signal ...
3
votes
0answers
103 views

How can I incorporate ternary operators into a precedence climbing algorithm?

I followed the explanation given in the "Precedence climbing" section on this webpage to implement an arithmetic evaluator using the precedence climbing algorithm with various unary prefix and binary ...
1
vote
2answers
41 views

How can I write constructor within an arithmetic expression?

I want to cut down on ugly code in JavaScript, especially relating to constructors. I have a vector defined as: function Vector2(X, Y) { this.x = 0.0; this.y = 0.0; if (X) ...
0
votes
3answers
157 views

How do i handle arithmetic overflows ?

i am trying to figure out how to handle overflow for addition, subtraction, multiplication and division, for two very large integer numbers. Any feedback/input would be appreciated. Does anyone know ...
0
votes
1answer
87 views

how to assert an arithmetic relation in Prolog database

I'm using forward chaining algorithm proposed by Bratko. How can I enter arithmetic rules in prolog DB. For example I want to enter age is 35. In other words I want to enter the fact(age,35). Thanks
3
votes
4answers
112 views

C++ test for divisibility with double

why doesn´t ((num / i) % 1 == 0) work in C++ when num is a double? and how would I instead write this code, that checks for factorials by checking if it leaves a remainder (etc 0.3333). int ...
1
vote
0answers
210 views

Cypher query in Python binding for Neo4j with arithmetic operations in WHERE clause

I ran into a problem when running the following Cypher query against my neo4j database in python binding v 1.6: START n0 = node:my_nodes(label='1'), n1 = node:my_nodes(label='1'), n2 = ...
0
votes
1answer
82 views

Is an arithmetic tree independent of (in,pre,post)-fix notation? [closed]

If I am asked to generate an artihmetic tree for a given expression P in postfix form, then will this tree be equal to an artihmetic tree for the same expression in prefix or infix form? If yes/no, ...
9
votes
2answers
248 views

Arithmetic C++ Operators

I was just asked a question in a technical interview that I was a bit confused about. The question was as follows: If int i = -1, int j = -1, and int k = -1, and we run the following line: ++i ...
3
votes
2answers
312 views

In T-SQL how can I get a column of 2-decimal points(or percentages)?

In SQL Server 2008, I am running a report where I need to divide two columns (called Completes and Prescreens, whole integers), and then I go to Excel and get the Prescreens divided by the Completes, ...
3
votes
1answer
213 views

Arithmetic operations and the compiler optimizations

I am contemplating a fixed-point arithmetic library, and in order to decide on how much optimization should be done by the library itself (through expression templates) I started questioning how much ...
1
vote
3answers
91 views

Inaccurate calculations (rounding?) - PHP

Edit: Problem solved I'm trying to port over a popular rating algorithm which analyses some statistics from Counter-Strike matches into a PHP script. The outline of the system can be found in the ...
-1
votes
1answer
57 views

Order of operation for subtraction? [closed]

This may be an uneducated question - or an odd one of the kind. My question is why this code doesn't work: if (up == true) { SDL_Delay(pause_t); ...
5
votes
3answers
156 views

Extra parenthesis changing result of formula in SQL Server 2008

In all other languages (arithmetic engines in general) putting an extra set of parenthesis around operators of same priority does not impact results. But recently in a testing project I noticed that ...
4
votes
2answers
102 views

What else does round() do besides rounding a number?

I just "fixed" a bug in the following lines of PHP: $value = 1091.09; // the failing test case $prop = sprintf('%013d', $value * 100); by adding those lines: $cents = ...
1
vote
2answers
165 views

Char is an arithmetic type?

I created a Matrix class, using static_assert(std::is_arithmetic<T>::value,""); to check if the template type is an arithmetic type. So I tried with Matrix<char> matrix1(3,3); // ctor ...
0
votes
1answer
130 views

Shorthand arithmetic operators return different results in Scala - EG: 3 + 2 != 3.+(2) [duplicate]

Possible Duplicate: Scala operator oddity I'm very new to Scala and I read that in this language everything is an Object, cool. Also, if a method has only 1 argument, then we can omit the ...
12
votes
5answers
321 views

Arithmetic vs boolean operations

I've come across this piece of code in some forum: if ( a * b * c * d == 0 ) .... and the owner claims this is a tad faster than if (a == 0 || b == 0 || c == 0 || d == 0) These variables are ...
0
votes
0answers
70 views

Multiply or divide in C#/.NET [duplicate]

Possible Duplicate: Should I use multiplication or division? Poking around in some (C++) 3D library I often see code like this: float fInvLength = 1.0f / fLength; rkAxis.x = x * ...
-5
votes
2answers
325 views

How to generate a random linear equation [closed]

I want to generate a random linear/mathematical equation. I have two inputs, final result, and the number of operators. For example: result = 84 noOfOperators = 3 So I expect the equation to be 15 ...
2
votes
1answer
98 views

how to do arithmatic operations in linux using awk or sed and piping the result to a file

with this problem I am beating my head with walls, please help. I have two files Sheetthickness.k which contains a single value of initial thickness and minThick.k which contains the final ...
2
votes
1answer
132 views

Computing 64-bit values in 32-bit mode

I'm writing a C99 compiler that works with 64-bit values. For starters, this will compile 32 bit and 64 bit code. On 64 bit operating systems, I know I can use the r[]x registers. But for the 32 bit ...
0
votes
1answer
155 views

Arithmetic operators on lists/tuples in Python?

I have a couple functions like this: object obj.getChild(childIndex) int obj.numChildren() So I am using these to create this function: collection obj.getChildren() I am flexible in the return ...

1 2