Tagged Questions
The arithmetic-expressions tag has no wiki summary.
12
votes
5answers
156 views
Firefox JavaScript arithmetics performance oddity
Please run this test on firefox.
http://jsperf.com/static-arithmetic
How would you explain the results?
This
b = a + 5*5;
b = a + 6/2;
b = a + 7+1;
executes much faster than
b = a + 25;
b = a + ...
7
votes
3answers
162 views
How do promotion rules work when the signedness on either side of a binary operator differ?
Consider the following programs:
// http://ideone.com/4I0dT
#include <limits>
#include <iostream>
int main()
{
int max = std::numeric_limits<int>::max();
unsigned int one = ...
6
votes
1answer
409 views
bash: $[<arithmetic-expression>] vs. $((<arithmetic-expression>))
I have just stumbled upon the bash syntax:
foo=42
bar=$[foo+1] # evaluates an arithmetic expression
When I Googled for this, I found ...
5
votes
1answer
289 views
MATLAB: Is it possible to overload operators on native constructs (cells, structs, etc)?
I'm using cells to manage data in some stuff I'm working on. I'd like to be able to do things like:
A = cellfun( @(X)( randn( 5,5 ) ), cell( 5,1 ), 'UniformOutput', 0 );
B = cellfun( @(X)( randn( ...
4
votes
3answers
69 views
Arithmetic operation within string concatenation without parenthesis causes strange result
Consider the following line of code:
<?php
$x = 10;
$y = 7;
echo '10 - 7 = '.$x-$y;
?>
The output of that is 3, which is the expected result of the calculation $x-$y. However, the expected ...
4
votes
2answers
163 views
How do I add two integers together with Twisted?
I have two integers in my program; let's call them "a" and "b". I would like to add them together and get another integer as a result. These are regular Python int objects. I'm wondering; how do I ...
3
votes
2answers
68 views
Is there such a thing as short circuit multiplication?
We all know about short circuiting in logical expressions, i.e. when
if ( False AND myFunc(a) ) then
...
doesn't bother executing myFunc() because there's no way the if condition can be true.
I ...
3
votes
2answers
60 views
Can a function be used in $(( func arg ? str1 : str2 ))?
I'd like to use a statement like this:
var=$(( func arg ? str1 : str2 ))
but bash gives this syntax error message:
syntax error in expression (error token is "arg")
I've played with various ...
2
votes
3answers
1k views
What is the difference between precedence, associativity, and order?
This confusion arises as most people are trained to evaluate arithmetic expressions as per PEDMAS or BODMAS rule whereas arithmetic expressions in programming languages like C# do not work in the same ...
1
vote
2answers
25 views
Why awk arithmetic doesn't work?
I have simple script:
#!/bin/sh
#NOTE - this script does not work!
#column=${1:-1}
column=1+1
awk '{print $'$column'}'
But when run
ls -la | ~/test/Column.sh
I receive always
1
1
1
1
What ...
1
vote
2answers
51 views
Execute an arithmetic expression in Android
I want to do an arithmetic operation on data stored in an Array.
User may choose random column and random operation on them.
like,
String DataTmp[10][3] = ...;
String strCalc = ...
1
vote
1answer
68 views
Is $(( expr )) equivalent to $[ expr ] in bash? [closed]
Possible Duplicate:
bash: $[<arithmetic-expression>] vs. $((<arithmetic-expression>))
The $(( expr )) construct can be used for integer math in bash, e.g.
echo $(( 2*2 + 1 )) # ...
0
votes
4answers
43 views
combining two variables to set a new variable to an already declared variable using javascript
I am trying to set a new variable to the same value as an already declared variable by combining two variables that together make the name of the original variable... This may sound confusing, so ...
0
votes
1answer
56 views
Arithmetic operations on y(x) functions in R
Suppose we have data frame f with two columns x and y where all values in f$x go in ascending order. We can treat it as a function y(x).
I want to perform arithmetic operations on such data frames ...
0
votes
2answers
45 views
Problems to use “Mul” and “Mod” operators in Bash
I don't understand why in this code
echo "Please, give me two numbers:"
echo 1:
read a
echo 2:
read b
echo "a = $a"
echo "b = $b"
OPT="Sum Sub Div Mul Mod"
select opt in $OPT; do
if [ $opt = ...
0
votes
1answer
73 views
IEEE 754 Floating Point Representation
How do I convert from decimal to IEEE 745 Floating point single precision ?
I can work with small numbers like 0.5, 0.75, etc
My problem is that I've no idea what to do with smaller numbers.
For ...
0
votes
1answer
109 views
Validate expression/infix in python
My question is simple. How to validate expression/infix in python? Is it possible?
For example:
a-d*9
5-(a*0.3-d+(0.4-e))/k*5
(a-d*9)/(k-y-4.3*e)+(t-7*c)
0
votes
2answers
115 views
Is there any way to give a format to arithmetic computations in Objective-C?
i want to define something similar to a computation method:
NSString *format = @"%d + 1";
In my code i want to do something like:
int computedNumber = sum(format,5) => the result should be ...
-5
votes
3answers
386 views
A hard Question? [closed]
I try To find a solution to a question ....
we have a number , example : 20 ...
and we have 6 number :{ a ,b , c , d , e , f} < 20 ,
t try to find all values of these numbers , but only if we can ...
-7
votes
2answers
310 views
What should this code print? It it compiler dependent? [closed]
Possible Duplicate:
Undefined Behavior and Sequence Points
What does this this code print and why? Is it compiler dependent?
int t=0;
std::cout << t++ + ++t - t-- << std::endl;
...