The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
3answers
37 views

Javascript: cannot override concatenation

Using the following code I want to move a line with id='seekline' by var1 (less than .1 in most cases), but I run into trouble adding var1 and j. The plus sign concatenates instead of adding. I have ...
0
votes
3answers
70 views

How can I speed up this brute force addition algorithm in Objective-C?

I'm trying to learn a little more about algorithms and have built a simple one to see, using brute force, whether a target number can be made from a grid of randomly created numbers. I've done enough ...
0
votes
2answers
29 views

Accuracy of c_k = a + ( N + k ) * b

a, b are 32 bit floating point values, N is a 32 bit integer and k can take on values 0, 1, 2, ... M. Need to calculate c_k = a + ( N + k ) * b; The operations need to be 32 bit operations (not ...
0
votes
1answer
45 views

How to use Twitter Bootstrap correctly ( adding styles )?

I am trying to figure out the bulletproof way of using Bootstrap correctly. Here is my example: <style><!-- this is my own class in a separate stylesheet --> .myClass {border:1px ...
0
votes
0answers
47 views

Adding values from 2 byte arrays

I want to add signals from 2 wav files and have been converting each byte to short , dividing by 2 to avoid overflow, then add the 2 short values and then reconvert back to byte before writing to the ...
0
votes
1answer
32 views

Incrementing an instance of int's subclass in it's own method?

I've inherited a class from int and I'm trying to create a method that increases my instance's value inside the method: class MyInt(int): def my_method(self, value): #do_stuff() ...
0
votes
3answers
20 views

MySQL table cell addition

So I have this code, that will get all the table rows $sql="SELECT score FROM bets WHERE betid='$id'"; $result=mysql_query($sql); $rows=mysql_fetch_array($result); Okay, lets say I'll get 10 ...
-4
votes
1answer
121 views

Function add two binary numbers in c++

In c++, how I can write a program that read 2 binary numbers then print the result of addition, using a function to read the binary numbers each number has 4-bit, and using a function to add (binary ...
1
vote
1answer
53 views

PHP Issue Adding 0.001 to 0.001?

Hi I cannot seem to be able to work out how to incrementally add a very small number? $val = 0.000000001; $add = 0.000000001; for ($i=0; $i < 100; $i++) { $val = bcadd($val, $add, 9); ...
0
votes
0answers
36 views

Adding fraction with integers in JavaScript

Here is what my friend noticed while working on a project. He does not have any stackoverflow account so I am asking on behalf of my friend. var a = 1.75/3; so it gives a = 0.5833333333333334 ...
2
votes
1answer
30 views

PHP Matrix Addition using classes

Alright, I'm new to Stack Overflow, and new-ish to PHP, and I'm just trying to get my head around PHP classes. Keep in mind, I'm used to C++. What I'm trying to do, is create a Matrix (2x2) class, ...
1
vote
0answers
71 views

Expression template c++. Addition of a variable and a value

I have an expression template which adds a variable with a constant in a given expression. I want to convert that to add the variable with any given number. Structs for constants and variables: ...
-2
votes
2answers
31 views

c#, calculate element in a list

private void btnAjouter_Click(object sender, EventArgs e) { double sommeFinale = 0; int prixItem; int quantité; int.TryParse(lstQuantité.Text, out quantité); ...
0
votes
2answers
86 views

Add together two UIAccelerationValue's?

I am not sure if this is a stupid question or not so please bear with me here. Anyway I have two UIAccelerationValue's. When I individually NSLog their results I get values like this respectively: 1. ...
0
votes
1answer
27 views

Priority Row Increase or Decrease based on Selection

I have searched and searched but can't find what I'm after, it's probably super simple. I have a table that has a priority field to display in order that was chosen. What I want to be able to do I ...
0
votes
2answers
58 views

Combining ECDSA keys

How can I combine two ECDSA private/public keypairs into one? I know it's done with modular addition in openssl, I just don't understand how that works. Can anyone explain that to me?
-2
votes
4answers
80 views

How to get rid of Cout text c++ [closed]

Hello so I made a program that takes two inputs (firstNumber, secondNumber). Then it outputs the sum of them. so the total thing would like this: Please Enter Your First Number: 3 Please Enter Your ...
1
vote
1answer
44 views

String Addition / Subtraction Function

This was a possibility in VB Script by using a script control with the eval function. For example ScriptControl1.Eval("(10+1.5)") 'Returns 11.5 Is there a way to do this in Vb.Net? The alternative ...
0
votes
3answers
66 views

“Not Declared in scope” in Function in C++ using Code:Blocks on Linux

This is my code: #include <iostream> #include "rlutil.h" #include <cmath> #include <string> using namespace std; int getNumber() { int ...
0
votes
2answers
38 views

Using unary representation with addition java string

I need to write a code that takes a string input and turns it, or something to that effect, into a valid unary equation with addition to verify if it is valid. I'm confused, could anyone point me in ...
0
votes
1answer
68 views

AS3: Adding 2 positive integers yield negative integer

I was making a Pascal's triangle in AS3. And in the results I find that, the addition of 1037158320 and 1166803110 yields -2091005866, a negative integer! This is weird. I first thought that the ...
-2
votes
1answer
20 views

Printing the sum of two functions function f1 and f2

The question tells me to... write a main method that constructs 2 fractions 5/7 and 3/8 and then create 2 other fractions whose values are the sum and product of the original fractions public ...
1
vote
1answer
33 views

django for cycle add variables together

I am facing a problem writing in simple for cycle in template. This is what I am trying to write in pseudo-code. total = 0; for each dividend total += dividend.amount; echo total; endfor But I ...
2
votes
3answers
84 views

Intro to C: Addition and Looping

I'm continuing on my quest to mastery C and I'm currently working on an exercise to have my rudimentary calculator continuously to prompt me for two operands and a operator. If the operator is not a ...
1
vote
2answers
58 views

Intro to C: Addition and Printing

I'm trying to making a rudimentary calculator that can perform a variety of arithmetic functions, starting with addition! Right now I've got the basic logic of it worked out, but I'm not sure exactly ...
0
votes
1answer
50 views

Understanding Two's Complement Addition

I've built a four bit adder/subtractor utilizing 4, 1 bit full adders and the input and output are twos complement numbers. If X=0111 and Y=1000 their sum is obviously 1111. In decimal this is ...
0
votes
1answer
104 views

How to find the sum of numbers and arrays with variable lengths

I believe that in addition, the left-hand and right-hand sides can be swapped interchangeably, correct? This rule doesn't seem to work with multimodular logic. The basic concept: ...
2
votes
1answer
50 views

Adding Values (Dollar Amounts) Together and Prevent Rounding

I need to add values (dollar amounts together) without rounding the values. Example: The values being added come from $("input#lunchorder_item_price") and output my subTotal. 2.95 + 2.95 + 2.45 = ...
0
votes
1answer
42 views

Ruby Syntax Sugar on Addition Methods

Quick question, why this doesn't work? sum = {} e = "a" (sum[e] ||= 0) += 1 I got (expecting 1): SyntaxError: unexpected tOP_ASGN, expecting $end (sum[e] ||= 0) += 1
0
votes
3answers
72 views

add values of multiple fields from one table and subtract it to a field from another table in php

I have two tables : contract bill. contract table contains following fields(contId (PK), contractNumber, quantity, etc..). bill contains following fields(billId (PK), billNo, contId, checkMtr, ...
1
vote
2answers
58 views

3 dimensional matrix addition

I have 3 matrices A=[[[1,2,3]]] B=[[[3,4,5]]] and C=[[[4,5,6]]] i want to add these 3 matrices. where the expected result is A+B+C = [[[8,11,14]]] please help me to solve this.
0
votes
2answers
52 views

Working with circle radials. Subtraction and addition

I'm working with magnetic headings and I am struggling a little bit with the math around it. Let's say I have a heading of 270 degrees, and I turn clockwise 110 degrees. I want the new heading, 020 ...
2
votes
3answers
61 views

Java threads summing single value

In Java, why in the code below synchronized can be commented? Because addition happens to be nearly atomic and thus the probability of error or failure is too small? public class AddInParallel { ...
-1
votes
1answer
120 views

Simplifying this masm to make it faster?

I am trying to make the c++ code of adding 512 bit (big int) converted into masm inline assembler in visual studio. Carry is very important as the C++ shown in the link below.I do need to represent ...
1
vote
1answer
37 views

addition in flex 3

I recently was working on a checkout system based in flex 3 and had an order total that didn't make sense to me. I was adding a subtotal, shipping cost, and tax. All 3 of those values were rounded to ...
0
votes
2answers
38 views

How can I take two matrices as input

In this code I'm suppose to find the addition of the matrices. A+B [[x + y for x,y in zip(w,v)] for w,v in zip(A,B)] When I run the program and write in the python shell A+B The answer comes out as ...
0
votes
2answers
78 views

Trying to make a simple app with addition of variables, having some problems

I have a timePicker with a 24h format and I want to take the results, put them into variables, using the variables in addition and then display them in a textView. Eclipse isn't giving me and syntax ...
0
votes
2answers
42 views

Add a value to all elements in a list (R)

I have a list like so: a = list('bla'=c(0,1,2,3)) I want to add 1 to every element so > a['bla'] $bla [1] 1 2 3 4 Of course > a['bla']+1 doesn't work... Help?
0
votes
8answers
67 views

Add Problems In java

I want to take input of two variable as integer and than do addition with the two variables. The ans will stored in another variable. The program will repeat after every addition end and will ask for ...
3
votes
1answer
68 views

Why I get 'None' [closed]

from __future__ import division from math import* def add(*args): return sum(args) def times(*args): s=1 for i in range(len(args)-1): s*=args[i]*args[i+1] return s def ...
1
vote
2answers
92 views

MS Access Update with addition

I'm working with MS Access and would like to how to update the data correctly..here is the code i use on my button click event with no luck OleDbCommand cmd = new OleDbCommand("SELECT * FROM ItemTemp ...
6
votes
4answers
301 views

What happens if you remove the space between the + and ++ operators?

EDIT 1 DISCLAIMER: I know that +++ is not really an operator but the + and ++ operators without a space. I also know that there's no reason to use this; this question is just out of curiosity. So, ...
-2
votes
1answer
71 views

visual basic in excel [closed]

I have a small problem. I am a beginner on visual basic. I couldn't add two text box. Lets say..... I have a Opening Stock button in a excel visual basic form... and another Sales button now I have ...
1
vote
1answer
69 views

Erlang: Adding together tuples?

I tried doing this to make a new date 90 seconds ahead of the current system time: 12> {{00,00,00},{00,01,30}}+erlang:localtime(). ** exception error: an error occurred when evaluating an ...
-1
votes
2answers
63 views

How can I add to a set integer while input is being received? (VB.Net) [closed]

I'm currently working with a servo controller which deals with the position of the servo (0 to 180 degrees). I want the servo to move little by little while a stick on an Xbox 360 controller is being ...
0
votes
1answer
21 views

Addition of binaries and overflow

I am practising my addition of binarys and got to overflow i'm guessing, i need the answer to be 5 bit for the additions of 01010 and 11011, to save time thats decimal 10 and 27 When added I get ...
0
votes
2answers
43 views

How to force addition when a value is missing in SQL?

I want to do an addition in a select statement like this: select (I + j + k) as total from MyTable ... As expected, if any of the I, j, k is null, total is returned as null. How do I code this ...
0
votes
1answer
324 views

Addition of two 64 bit numbers in emu8086

I've searched for about one day but I can't find anything about adding 64 bit numbers in assembly - emu8086 How can I do this ? My registers are only 16 bit and I have 2 numbers of 64 bits. The ...
0
votes
2answers
76 views

matlab vector addition like multiplication, without for loop

Normally when one adds two vectors this is what happens [1 4] + [2 5] = [3 9] I want it to do this: [1 4] + [2 5] = 3 6 6 9 So basically addition like how multiplication ...
0
votes
2answers
74 views

Numbers I can get by adding an array in java

I need to get a minimum number that I cant get by adding different numbers of an array. Basically if I have these numbers:1,1,1,5; I can get 1,2,3,5,6... but I cant get 4 so that is the number I am ...

1 2 3 4 5 6