The divide tag has no wiki summary.
0
votes
0answers
14 views
Simplifying class structure of compiler
So i'm writing a compiler in java that translates my own language to the CUDA language. For this task i have written a grammar in ANTLR4, getting a lexer and parser.
Now, ANTLR gives me a Listener ...
0
votes
1answer
21 views
How to delete everything after special charcter in each column in Excel document and divide two words from one cell to two separate cells?
I have excel document with one cloumn. It looks like this:
car /VIj+
car, cars /VIj-
home, homes /VKjsah+
homeless, homeless /VKjsbh+
.
.
.
And I need to delete everything after symbol / ...
-2
votes
2answers
58 views
Dividing a number and display a remainder in C#
Hi I am currently teaching myself C# using different books and online solutions, there is one exercise that i cant really get my head around. I had to divide a number by another number in C# using ...
2
votes
2answers
54 views
Include the period in a sentence - regular expression
I have 40,000 lines and need to divide each line into different sentences. Now I'm using pattern like this:
String patternStr2 = "\\s*[\"']?\\s*([A-Z0-9].*?[\\.\\?!]\\s)['\"]?\\s*";
It can handle ...
0
votes
1answer
18 views
How to divide 2 joined SQL columns?
So im trying to create a highscore table for a "create your own burger" application.
My SQL Query:
SELECT Save_Burger.Name, Rating.TotalScore, Rating.TotalVotes FROM Save_Burger INNER JOIN Rating ON ...
-1
votes
0answers
24 views
max independent set of tree by Divide and Conquer
This is one of the questions of my Algorithm subject's final test.
It can be find the max independent set of tree by Dynamic programming.
But can it be by using Divide and Conquer ??
-1
votes
0answers
39 views
Write a program that prints sum, product,subtract,division of two input integers in prolog [closed]
*question:*Write a Prolog program that will take two integers and the operation (sum, subtract, multiplication, division) as input and return the operation’s result of that integers as output.
...
0
votes
0answers
27 views
x86 asm divide overflow handling
I would like to ask about division errors handling.
I have value in acumulator dx:ax = 0040ABCD
mov cx, 1
idiv
It's just an example which demonstrates situation. After idiv remainder is storing at ...
0
votes
4answers
95 views
Jquery display variable into html div
I have defined the following variable:
var TuesdaysRatio = myTuesdaysNewLikesTotal / myTuesdaysImpressionsOrganicTotal;
The console.log(TuesdaysRatio); is has the output in Chrome: ...
0
votes
3answers
52 views
Divide by count result using PHP MYSQL
I am trying to divide by the number of rows in my table, at the minute I am entering the value to be divide by manually using:
<?php
$result10 = $result10 * 100 / 10 (<-- Result from count)
...
-1
votes
1answer
17 views
Annual Rent divided by square feet display with two decimal points. (i.e. 1,000.38)
I am trying to get the Annual Rent displayed with two decimals and the rent/sq. ft. to have two decimals as well. I've already added the scripting to have these two fields automatically display ...
-7
votes
1answer
51 views
How can I get an algorithm? [closed]
How can I get an algorithm to multiply long numbers using divide conquer strategy?and alogrithm should divide numbers into three parts
2
votes
3answers
91 views
Need advice on improving my code: Search Algorithm
I'm pretty new at C++ and would need some advice on this.
Here I have a code that I wrote to measure the number of times an arbitrary integer x occurs in an array and to output the comparisons made.
...
3
votes
3answers
86 views
How to split amount to months using query?
I have, for example simplified, this result from query (select... from... where...):
id months amount
1 2 120
1 6 180
2 2 120
2 6 180
Now I need to get, from first table ...
0
votes
2answers
101 views
How Divide and Conquer algorithms work with a given input?
I've written a divide and conquer algorithm in java.
The problem is, I've tested it an it works, except I'm not really sure why or what it does with the data. I know the it splits the array into sub ...
0
votes
2answers
116 views
ASM| Program exit after Mod(%) is 0 in a calculator project
In my calcilator projuect I'm doing a Mod action
ex . 15 % 6 = 3
When im doing it and there is a mod (!=0) its working
but when im doing it and the mod is 0 , ex. 100 % 10
the program dont even ...
1
vote
1answer
66 views
Divide OverFlow ASM
I'm doing a calculator project for school and all the thing work good ,
but Divide and Mod(%) are giving me a "Divide Overflow" error , how can i fix it?
For the full code : ...
0
votes
1answer
106 views
Page splitting animation using css3
i'm working on my portfolio and i got an idea where a sword slices my div/page in half and then reveals the stuff thats underneath(see image :D). But i cant get it to animate, except for when i'm ...
0
votes
1answer
43 views
I get an error, but my program works and behaves as expected. Just an unwanted error message at end
f = open("arvud.txt", "r")
arv = f.readline()
arv = arv.strip()
while arv != " ":
if int(arv)%2 > 0:
print("Arv " + str(arv) + " on paaritu arv.")
else:
print("Arv " + ...
0
votes
1answer
105 views
Mysql+PHP divide query value
So I have this table filled with a row (we call it $numbers for now) containing numbers greater than 100 000. For example 581 249
I want to echo these values on-screen (using PHP) with a MySql query. ...
1
vote
1answer
50 views
Split 2D quad by line
I found many implementations that deal with splitting a polygon by a given line, but I only need to split a Quad (rectangle with 4 vertexes).
Is there an algorithm optimized for this task? Simplicity ...
0
votes
1answer
21 views
Check if 2d shape composed of block has been cut
I know that the title of this topic might be confusing, but I didn't know how to explain it in a single sentence!
I'll try to be more clear, I have a 2d array of boolean values, every value states if ...
2
votes
4answers
136 views
Divide one list by another list
I have two lists like this:
monkey = ['2\n', '4\n', '10\n']
banana = ['18\n', '16\n', '120\n']
What I want to do with these two list is make a third list, let's call it bananasplit.
I have to ...
0
votes
3answers
77 views
integer sequence that will turn it around
I have to make a integer sequence that later will turn it around. Example. If the integer is 0,1,2,3,4 it will turn it around in the end to -4,-3,-2,-1,0.
I tried this that the int value i have ...
0
votes
2answers
640 views
Convert Milliseconds to Seconds with Precision
What I would like to be able to do in Java is to convert for example 1500ms to 1.5s, or 500ms to 0.5s.
I could do Double.parseDouble(500 / 1000 + "." + 500 % 1000); but that isn't the best way to do ...
1
vote
1answer
53 views
function to return suitably lagged and iterated divided value in R
I have a time series data, and I wanted to use a function to return suitably lagged and iterated divided value.
Data:
ID Temperature value
1 -1.1923333
2 -0.2123333
3 -0.593
4 -0.7393333
5 ...
2
votes
1answer
108 views
VB.NET Attempted to divide by 0 error when Integer dividing by decimal
I'm trying to do Integer division () by 0.25 but VB is telling me I tried to divide by zero, I also tried dividing by (1/4).
This is my snippet
AmountLeft = Remainder \ 0.25
lblQuartersAmount.Text = ...
5
votes
4answers
298 views
Divide each number in each column of a data frame by specific number in R
I'm trying to divide each number within a data frame with 16 columns by a specific number for each column. The numbers are stored as a data frame with 1-16 corresponding to the samples in the larger ...
0
votes
1answer
119 views
dividing by two in binary numbers
how can I divide a binary number (in 2 complement) by 2 .
I've tried bit shifting but I have a problem with negative odd numbers, how can I solve it?
for example :
(-7/2) 11001/2 => (shifts ...
1
vote
1answer
35 views
Error dividing 2 arrays in new array
public double[] deel(int[] rij1, int[] rij2)
{
final int RIJ_LENGTH = 5;
double rij[] = new double [RIJ_LENGTH];
for (int i = 0; i < rij.length; i++)
rij[i] ...
0
votes
1answer
31 views
PHP foreach, getting Win/Total Ratio
I got this code,and I am trying to get the Win/divided by total games played number,which should be under 1. Like 0.75.
foreach($dat as $stats) {
if($stats['championId'] != 0) {
echo ...
7
votes
6answers
135 views
Odd behaviors when dividing doubles in Java
When I divide 317 by 219 in Java using doubles I get 1.
For example:
double b = 317/219;
System.out.println(b);
Output is: 1.
Is this because it is a recurring decimal?
Have had to use BigDecimal ...
0
votes
5answers
152 views
Can anyone explain why '>>2' shift means 'divided by 4' in C codes?
I know and understand the result.
For example 7 (decimal) = 00000111 (binary)
and 7 >> 2 = 00000001 (binary)
00000001 (binary) is same as 7 / 4 = 1
So 7 >> 2 = 7 / 4
But I'd like to know how ...
0
votes
2answers
130 views
Grep and Cut Command and divide string
I have a grep command that gives the following string:
20121121001100 18 0 16 2 18
but I would like to modify this string to get
20121121 001 18 0 16 2 18
the above value are being extracted by ...
0
votes
3answers
118 views
Use divide in java and get a int or multiply it with 3
Got a case here. Trying to solve it, but don't understand how to do so.
The case is:
If the number is divisible by 2, it shall be cut in half - if not, it should be multiplied by 3, and this result ...
1
vote
3answers
282 views
Divide list in three columns
I have list of values that I want to fetch from my database. List could be long so I want to divide into two columns if it has over 15 items and to three columns if it has over 30. How can I break it ...
0
votes
1answer
119 views
T-SQL Divide value across rows
I have the following columns and data in table:
PeriodID Days
1 NULL
2 NULL
3 NULL
4 NULL
5 NULL
Then I have days that should divide across the rows as follows:
...
0
votes
3answers
179 views
SQL division giving wrong answer [duplicate]
Possible Duplicate:
What is wrong with this SQL Server query division calculation?
I am dividing two values in SQL like
SELECT SUM(totalCalls),
SUM(EnteredBTN),
SUM(EnteredBTN) ...
2
votes
4answers
89 views
MYSQL - Detect rows that have three columns in common
I'm working on a small script that will transfer order information from a newer database (for online orders) to an antiquated, custom database that they have 20+ years of information in and it only ...
0
votes
0answers
27 views
Displaying a big image - Performance wise, one big or a bunch of small ones?
I'm developing a site where the size of the image is 5x the window in height and width. I have experienced stuttering when scrolling over the image with IE & Chrome.
Is there any difference in ...
2
votes
2answers
357 views
Why am i getting the error “Exception in thread ”AWT-EventQueue-0“ java.lang.ArithmeticException: / by zero”?
Exception in thread "AWT-EventQueue-0" java.lang.ArithmeticException:
/ by zero
at factoroperations.compute(factoroperations.java:21)
at ...
1
vote
2answers
75 views
Java When I pass a Parameter to this Method, it is erroneously divided by one of my Constants before any code in the method executes
I have a class that is meant to be a very simple in-game level editor for a 2D game composed of tiled image under Sprites. The purpose of the code I am debugging is to update a char within a ...
0
votes
3answers
356 views
Divide by 3 and Round up (If need be) C#
I have come to a point in my game where I have to implement a feature which divides a number by 3 and makes it a whole integer. i.e. not 3.5 or 2.6 etc....
It was to be a whole number, like 3, or 5.
...
6
votes
2answers
159 views
Correct sums with dividing sums, countering rounding errors
Web app coded in PHP with a MySQL database.
I have a system which calculates different costs for a number of people when splitting a cost. For example Person A buys something for 10 and Persons B, C, ...
0
votes
1answer
61 views
Sentences division
I have to divide text for separated sentences.
Ok. It seem be very simple.
Just search for the "." or "?" or "!" and add next sentence to the array.
But unfortunately is not so great and simple.
...
-1
votes
2answers
38 views
Divide To Ids to get a new result
I have 2 Ids #totalcbm and #gross, i want to divide both these values using jquery and to store the result in a new id #result.
How can i do this using jQuery.
1
vote
1answer
108 views
Dividing Scala iterators leads to GCoverhead/JavaHeapSpace problems
I am processing large data with Scala, so memory and time is an even more important companion than it usually is to me. I am trying to increase the speed of some evaluation by subdividing the initial ...
1
vote
2answers
550 views
Divide 2 numeric vectors of the same length
deflator <- nominalGDP/realGDP
WARNINING MSG In Ops.factor(nominalGDP, realGDP)
The question is to get:
deflator = nominal/real
Use nominalGDP and realGDP to calculate deflator values.
You ...
-3
votes
1answer
297 views
x86 assembly - masm32: absolute breakdown of multiplication and division
I have looked all over the internet for a simple-to-understand evaluation of how to multiply and divide in masm32 assembly. My questions are:
Where should I place the numbers being multiplied?
Where ...
1
vote
2answers
1k views
How to create a photoshop script to divide a layer into a grid of separate layers [closed]
I have been looking for a solution but I don't think this is possible without writing a script. What I want to do is take a single photoshop layer and divide it into a grid of squares where each ...


