Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
7answers
597 views

Where can I find soft-multiply and divide algorithms?

I'm working on a micro-controller without hardware multiply and divide. I need to cook up software algorithms for these basic operations that are a nice balance of compact size and efficiency. My C ...
6
votes
5answers
4k views

Why does Decimal.Divide(int, int) work, but not (int / int)?

How come dividing two 32 bit int numbers as ( int / int ) returns to me 0, but if I use Decimal.Divide() I get the correct answer? I'm by no means a c# guy.
4
votes
3answers
2k views

objective-c divide always returns 0

Something really weird is happening. float p1 = (6 / 100); NSLog(@"p1 = %f", p1); With those two lines of code I get the following output: p1 = 0.000000 Why is a simple devide with static ...
3
votes
5answers
318 views

C#: divide an int by 100

How do I divide an int by 100? eg: int x = 32894; int y = 32894 / 100; Why does this result in y being 328 and not 328.94?
3
votes
3answers
488 views

sum divided values problem (dealing with rounding error)

I've a product that costs 4€ and i need to divide this money for 3 departments. On the second column, i need to get the number of rows for this product and divide for the number of departments. My ...
3
votes
7answers
744 views

Divide and Get Remainder at the same time?

Apparently, x86 (and probably a lot of other instruction sets) put both the quotient and the remainder of a divide operation in separate registers. Now, we can probably trust compilers to optimize a ...
3
votes
6answers
292 views

Is there any way to divide rgb color palette?

I'm trying to generate a color palette which has 16 colors. i will display this palette in 4x4 grid. so i have to find a way to rgb color palette which has 255*255*255 colors divided to 16 colors ...
3
votes
6answers
6k views

Find if variable is divisible by 2

How do I figure out if a variable is divisible by 2? Furthermore I need do a function if it is and do a different function if it is not.
2
votes
3answers
76 views

How to Insert Commas Into a Number WITHIN a String of Other Words

I have a String like the following: "The answer is 1000" I want to insert commas into the number 1000 without destroying the rest of the String. NOTE: I also want to use this for other Strings of ...
2
votes
1answer
68 views

Jquery Divide and then Append to multiple divs

I have a page with differentiating amounts of colums determined by user selection. Upon changing, for arguments sake, from three to two colums I want to take all content (child divs) from all three ...
2
votes
2answers
130 views

numpy divide along axis

Is there a numpy function to divide an array along an axis with elements from another array? For example, suppose I have an array a with shape (l,m,n) and an array b with shape (m,); I'm looking for ...
2
votes
4answers
210 views

apply() and calcuating proportion of first row for all dataframe rows

I have a dataframe as shown below listing the number of injuries by vehicle type: > trqldnum <- ...
2
votes
5answers
2k views

How do I divide in the Linux console?

I have to variables and I want to find the value of one divided by the other. What commands should I use to do this?
1
vote
2answers
58 views

Prolog - dividing a list in N parts

I'm trying to write a predicate that divides a list into N parts. This is what I have so far. partition(1, List, List). partition(N, List, [X,Y|Rest]):- chop(List, X, Y), member(NextToChop, ...
1
vote
2answers
62 views

VB - Divide integers doesn't include commas?

This is probably an easy one, but I've got this Excel vba macro where I'm trying to divide two integers and I end up with a round number, even though there should be a comma in there. For example 278 ...
1
vote
1answer
37 views

Dividing selected elements of array on Matlab

I have the following array a = [ 1 10 3 4 68 2 34 8 10 ] And I need to divide each number (/2) if this number is higher than 9. This means that 1 has not to be divided, and 10 has to be divided ...
1
vote
2answers
353 views

java.bigDecimal divide in ruby environment

I right script in Ruby that include java classes require 'java' include_class 'java.math.BigDecimal' include_class 'java.math.RoundingMode' during the script I need to divide 2 java.bigDecimal ...
1
vote
2answers
183 views

XSLT: Append spaces in “long” word

There is a code: <p> Lorem ipsum dolor sit ametconsecteturadipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis ...
1
vote
1answer
85 views

XSLT typograph

Divide a large amount of text on an arbitrary number of equal parts. I probably already fed up with their stupid questions, but I have one more question. I have a large piece of text <p> ...
0
votes
0answers
30 views

How to get image and divide text in page of epub file on android

I'm writing an epub viewer with Paul Siegmann's Epub Library for Android. I don't know to get image from epub, I manage to get text string from epub. After that I get images i want divide text in page ...
0
votes
0answers
42 views

SQL Reporting Services Divide Two Columns

Using SQL 2005 Reporting Services. I have two columns I want to divide: EDDAYS by PPDM These are the expression that I'm using, but each give me an error: ...
0
votes
3answers
75 views

bash divide result compared with float

THis is part of my bash code; b=`cat 101127_2_aa_1.fastq|head -$a|tail -1|sed 's/\(.\)B*$/\1/g'|wc -c` d=`cat 101127_2_aa_1.fastq|head -$a|tail -1|wc -c` if (($b%$d>=0.7)) ...
0
votes
0answers
51 views

NSNumberFormatter division

I want to transform a large number 50,000,000 to 50 with the NSNumberFormatter. Is there an easy way to do it? NSNumberFormatter *newFormatter = [[NSNumberFormatter alloc] init]; [newFormatter ...
0
votes
3answers
110 views

Python Divide a string

I have a string like this: <td casd2" aasdeft" class="satyle3"> <b><a asddidasd?ct=Peasds&amp;fasdaao=Monsdar &amp;pID=19635"... I need the 19635. Someone can help ...
0
votes
5answers
107 views

How divide two numbers in java script

I am facing the issue in division of numbers in java script. Example: var x= 2500, var y = 100 alert(x/y) is showing 25. I need the answer in 25.00 format. What can I do? When I divide ...
0
votes
1answer
64 views

Jquery set width of div to window then divide

I have a site that has 3 panels it slides through. I want to set the background of each panel to be the window size so I am using: var width1 = $(document).width(); var width2 = $(".nav").width(); ...
0
votes
1answer
78 views

Linq expression builder, add conditional in divide case

As part of a larger set of expressions, we have our divide case. It's simple enough protected override Expression BuildDivideExpression(Expression left, Expression right) { return ...
0
votes
1answer
43 views

loop divide to table column

I would like to print out a html table- it should divide data into x columns per row via for loop. $alphabet_arr = array('A','B','C','D','E','F','G','H','I','J','K'); no. of cols need to define, ...
0
votes
1answer
83 views

Layout questions about HDivideBox and HGroup

I'm struggling with 2 layout problems when using HDivideBox in Flex 4.5: When I drag the vertical dividing bar to the left, the Label and the 3 RadioButtons on the top-left do not break in 2 rows. ...
0
votes
2answers
64 views

jQuery - Find custom 'divider' > Wrap each side accordingly

I've been looking for a plugin maybe that does something like what you can read from below. If no one knows a plugin that could do that i'd like to get some info on how one would go about doing this. ...
0
votes
1answer
259 views

8086 assembly Shift subtract and Divide

Hey guys this is my first time posting so be nice to me! I have to make a program that shifts and subtracts to eventually divide two numbers. I have already made a program that can shift add and ...
0
votes
3answers
302 views

How to divide and load a ListView in multiple parts?

I am wondering how could i divide my ListView in parts and display only one part of it when user starts my app and display others when user press a Button called "Load More Items". I have a big list ...
0
votes
2answers
93 views

How can i divide a hex string into two parts?

it is possible to divide an hexadecimal srting in two parts,specifically i have the string variable take values like that var=xxxxyyyy.I need to divide this in two parts,on var1=xxxx and var2=yyyy how ...
0
votes
0answers
138 views

Android double division causes crash

I'm having troubles with a simple division: public double getTotalAverageSpeed(){ double totalAverageSpeed = 0.0; double hours = getTotalTime().getHours(); double minutes = ...
0
votes
0answers
56 views

PHP Webpage Print Division Page wise

I have a webpage, where I am displaying Chart / Graph with no. of players those are eligible to fight, Now when we print that page, that chart is divided into 2 to 3 pages, depending on the no. of ...
0
votes
2answers
150 views

Dividing an array equally in C

i am writing a C in Linux, forks a parent and N children. the Parent takes the sqrt(ArraySize) and the rest is divided equally upon the N children. how could i divide the rest of the array equally ...
0
votes
1answer
166 views

int divided by unsigned int causing rollover

I try to divide int by unsigned int and I get unexpected result: int b; unsigned int c; int res; float res_f; b = -25; c = 5; res = b / c; // res = 858993454 res_f = b / c; // res_f = -5.000000 ...
0
votes
3answers
188 views

Divide in SQL Server

In SQL Server 2005 Express, the result is below SELECT 100 / 15 --Result 6 But I wanna get approximate value 7 (like using calculator) 100 / 15 = 6.6666.. How to make it in SQL Server?
0
votes
0answers
159 views

Divide a dynamic connector into 2 parts and add text

I am programming in Visual Basic 6.5 to do some specialized things in Visio. After much frustration, I now paste this problem to you guys: -There are two rectangles with custom properties. -There ...
0
votes
1answer
4k views

Creating line dividers in Android tab layout paragraphs

Hey all, first post and a noob in Android programming, but willing to learn! Basically I've taken the Google sample of a tab layout from here I found that method to be very easy to create tabs with ...
0
votes
4answers
877 views

how to divide a list into n equal parts, python [closed]

Possible Duplicate: How do you split a list into evenly sized chunks in Python? Given (any) list of words lst I should divide it into 10 equal parts. x = len(lst)/10 how to give these ...
0
votes
3answers
293 views

Add / Divide Numbers in PHP

I am working on a Facebook App that needs to be able to average three numbers. But, it always return 0 as the answer. Here is my code: $y = 100; $n = 250; $m = 300; $number = ($y + $n + $m / 3); echo ...
0
votes
2answers
194 views

Dividing a page with css

Im trying to devide a page in 2 parts but with 2 seperate css sheets but i dont want to use a frameset (horror), is there a possibility?
0
votes
6answers
250 views

How to avoid double divide in loop?

Thank you for your help. My code looks like: var CatItems = ""; for(var x=0; x < data.PRODUCTS.length; x++) { if (x % 3 === 0) CatItems += '<li class="jcarousel-item jcarousel-item-horizontal ...
0
votes
2answers
391 views

Pixelate and divide into parts image with c#

I want to pixelate image and divide image into parts that pixelated then I would like to take the approximate color of that divided part. Imagine that fans are holding cartons and whole image is ...
0
votes
2answers
1k views

Flex HDividedBox custom divider

Before I go ahead and begin coding one, I was wondering if there are any existing components that allow me to do the following in an HDividedBox: Have an embedded arrow that, which clicked, will ...
0
votes
4answers
2k views

In MIPS, how do I divide register contents by two?

Let's say I have $t0, and I'd like to divide its integer contents by two, and store it in $t1. My gut says: srl $t1, $t0, 2 ... but wouldn't that be a problem if... say... the right-most bit was 1? ...
-2
votes
2answers
55 views

Javascript dividing causes mistakes

Why this code does not end with i = 0 ??? var i = 1, l = 10; // initial values (function loop(){ if(l > 0){ i = i - 1/10; console.log(i); setTimeout(loop, 30); l--; ...
-3
votes
1answer
45 views

How to divide page into multiple colored sections

my question is how can I divide a background into multiple colored sections. I'm pretty new to coding, so if you could maybe give me a brief explanation I would appreciate it. Thanks.
-3
votes
3answers
201 views

Print amount of numbers in array divisible by 3

I'm new to Java and working on a basic program that looks through an array and gives prints the amount of numbers in the array that are divisible by 3. I'm having some trouble getting it to work ...