Tagged Questions
The comparing tag has no wiki summary.
6
votes
6answers
967 views
Is it correct to compare two rounded floating point numbers using the == operator?
Or is there a chance that the operation will fail?
Thanks.
I chose the wrong term and what I really meant was rounding to 0, not truncation.
The point is, I need to compare the integer part of two ...
5
votes
3answers
118 views
comparing arrays in PHP - interesting behaviour
The first example:
$x = array("a" => 1, "b" => 2);
$y = array("b" => 1, "a" => 2);
$xLessY = ($x < $y);
$xGreaterY = ($x > $y);
var_dump($xLessY, $xGreaterY);
Result: $xLessY = ...
4
votes
2answers
701 views
How to do equality comparison in SQL with C#-like behavior?
How to compare equality of value in SQL with null?
For those familiar with C#, here are the results of comparing nullable values:
null == null : true
null == john : false
null == paul : false
john ...
4
votes
7answers
1k views
Comparing 2 huge lists using C# multiple times (with a twist)
Hey everyone, great community you got here. I'm an Electrical Engineer doing some "programming" work on the side to help pay for bills. I say this because I want you to take into consideration that I ...
3
votes
3answers
251 views
Comparing two numpy arrays to each other
I have two equally sized numpy arrays (they happen to be 48x365) where every element is either -1, 0, or 1. I want to compare the two and see how many times they are both the same and how many times ...
3
votes
3answers
381 views
Silverlight? WPF? or Windows Form?
After Silverlight 4.0 has been released with new WPF, I am kind of confused with these technologies: Silverlight? WPF? Windows Form?
The main motive that we want to achieve for BIG business project ...
2
votes
2answers
103 views
Comparing 3 arrays of various NSObject Subclasses
I have an NSDictionary which contains 3 NSArrays,
- posts
- comments
- likes.
And in each array are consistent NSObject Subclasses:
- Post
- Comment
- Like
Usually, I would just put all objects ...
2
votes
3answers
374 views
Find Duplicates In Arrays
I am writing a method that would take the values and the array and find duplicates. If there are duplicates, like for instance two values have the same value, I will multiple that value by 2. If two ...
2
votes
5answers
1k views
Compare two schemas and update the old schema with the new columns of new schema
I've an Oracle database with two schemas. One is old and another is new. I would like to update the old schema with the new columns of the new schema.
I get the tables which have changes with the ...
2
votes
3answers
2k views
Comparing chars in a character array with strcmp
I have read an xml file into a char [] and am trying to compare each element in that array with certain chars, such as "<" and ">". The char array "test" is just an array of one element and ...
2
votes
12answers
2k views
Efficient way to compare two strings (ordering of characters irrelevant)
I am trying to come up with an algorithm to compare two strings. It would register a match any words that contain the same letters. For example rent and tern would be equivalent because they both ...
1
vote
1answer
68 views
Check if there is a difference between two rows
I have the following table:
column_a column_b column_c column_d column_date
1 test_1 test_1 type_1 11:00
2 test_2 test_2 type_2 11:01
3 test_3 test_6 type_2 ...
1
vote
4answers
103 views
Is it possible to count the number of elements from one array in another and vice versa in a single loop?
I have a double array x and a double array y. Both can have duplicates elements.
const double MAX = 10000.0;
const int X_LENGTH = 10000;
const int Y_LENGTH = 10000;
const double TOLERANCE = 0.01;
...
1
vote
1answer
48 views
C# Comparing images: Are the images' files the same
I have seen only one solution for comparing images. But this solution checks if EVERYTHING about the images is the same. But I want to check if the images are loaded from the same image file from the ...
1
vote
1answer
65 views
javascript comparing arrays of objects
I'm getting a "Maximum call stack size exceeded." while trying to iterate the contents of an array and I can't for the life of me figure out why
Edit: By the way I want to add that this is for Safari
...
1
vote
2answers
111 views
String sorting with numbers last objective c
I had a good search of SO but couldn't find anything relevant to this problem. I have a custom object class that implements a comparison method for sorting in arrays. This comparison uses the "name" ...
1
vote
3answers
233 views
C comparing pointers (with chars)
Good evening, I have 2 functions and each of them accepts as argument a pointer to char:
char pointer[255];
func1(char* pointer)
{
...
memcpy(pointer,some_char,strlen(something));
return;
}
...
1
vote
2answers
144 views
Compare 4 float values for the highest value
Having trouble comparing 4 float values in objective c, I would like to return the highest or equal values of these 4 integers. As you can see two are the same here.
This is the NSLOG output
...
1
vote
2answers
103 views
Comparing two .txt files in Python and saving exact and similar matches to .txt file
What i need is:
text_file_1.txt:
apple
orange
ice
icecream
text_file_2.txt:
apple
pear
ice
When i use "set", output will be:
apple
ice
("equivalent of re.match")
but I want to get:
apple
ice
...
1
vote
5answers
212 views
Compare variables PHP
How can I compare two variable strings, would it be like so:
$myVar = "hello";
if ($myVar == "hello") {
//do code
}
And to check to see if a $_GET[] variable is present in the url would it be like ...
1
vote
3answers
187 views
PHP -Comparing Unix Timestamp To Now
I'm retrieving a unix timestamp from a DB and I want to check if this datetime has passed already.
I tried using an if statement to compare to time() but it always says the time has passed already.
...
1
vote
1answer
102 views
Problem with comparing 2 files - false when should be true?
I tried using byte by byte comparison and also comparing calculated hash of files (code samples below). I have a file, copy it - compare both - result is TRUE. But problem starts when I open one of ...
1
vote
2answers
672 views
MongoDb query condition on comparing 2 fields
I have a collection T, with 2 fields: Grade1 and Grade2, and I want to select those with condition "Grade1 > Grade2", how can I get a query like in MySQL?
Select * from T Where Grade1 > Grade2
Thanks ...
1
vote
3answers
72 views
Strange python's comparison behaviour
I have a sample code looking like this, values (position = 2, object.position = 3) :
new_position = position
old_position = object.position
logging.debug("1. new_position: %s, ...
1
vote
5answers
378 views
comparing string literals in c++ templates
I wrote a template function to compare two variables:
template <class t>
int compare(const t &a, const t &b) {
if(a>b) return 1;
if (a<b) return -1;
return 0;
}
int main(int ...
1
vote
3answers
386 views
Is there a Java API for comparing Database Schemas
I'd like to compare if
tables
columns including datatypes and length/precision.
indexes and their columns
constraints
in two database schemas are identical.
Is there anything like this ...
1
vote
2answers
100 views
How can I find out if two arguments are instances of the same, but unknown class?
Let us say we have a method which accepts two arguments o1 and o2 of type Object and returns a boolean value. I want this method to return true only when the arguments are instances of the same class, ...
1
vote
1answer
85 views
Any existing php code out there for condorcet comparing?
I beleive the website 'whatsbetter.com' (defunct) used a Condorcet method for comparing two images such that they could join a list of ranked images, and also have data stored about their performance ...
0
votes
2answers
41 views
Comparing values in Array fails
Sometimes comparing two strings within arrays fails. Failing occurs occasionally only in looped ifs. Example code below stands for implementing the problem.
searchTable.sort();
...
0
votes
1answer
29 views
Comparing a UILabel string to a mutable array in Objective-c
There are a lot of posts similar to mine but the answers given are not working on my program. I read a lot of forums and blogs already. I am really having a hard time, please help me. My program has a ...
0
votes
4answers
34 views
mysql query with when statement comparing
I want to write mysql when statement and i can't do it.
explanation => localParty is column in table "data", loc is column from table "o", and i want to compare localParty to loc, if their values are ...
0
votes
3answers
44 views
Compare a specific number to the numbers in a row in mysql table in php
Im trying to the following:
I have a specific number and I would like to compare this number to numbers in a row and get count of each number.
I have a sample and its working ok but if a row ...
0
votes
1answer
72 views
XOR type scenario in C outputs incorrectly
Basically I am making a program that is evaluating CRC on an initial hex value. In this case:
Hex = AB1245
I have converted it to binary in the program:
1010 1011 0001 0010 0100 0101
This is ...
0
votes
1answer
118 views
Comparing not identical sound files
I'm developing a program for iPhone.
I have read this article and I have some questions. After I get amplitude of sound file, which ranges of spectrum do I need to transform into FFT(Fast Fourier ...
0
votes
2answers
82 views
Finding NSStrings from one array in another (for loops & isEqualToString issue)
I want to add objects from NSArray *small whenever they don´t exist in NSArray *big.
But the output shows that the objects from *small which exist in *big are added. I have tried x isEqualToString: x ...
0
votes
4answers
105 views
Comparing variables of objects in an array?
I've an array of objects in Java. Say these objects Obj contain a variable var, and I have several Obj stored in an array Array[].
I'd like to compare the var between two adjacent Obj but I don't ...
0
votes
1answer
248 views
Comparing Sub-Folders and Copying Files with PowerShell
In continuation from my previous post here:
Comparing folders and content with PowerShell
...I'm attempting to compare two directories that contain sub-folders (at least 4 levels deep). The second ...
0
votes
6answers
452 views
Replace XML self-closing tag with empty one
I have to compare XML data. There are two sources-
Web Service
XML files
I don't see any easy way to transform them in same classes and use equals method.
The classes that work with Web Services ...
0
votes
2answers
216 views
Comparing large MySQL data sets with PHP
I have a set of approximately 1.1 million unique IDs and I need to determine which do not have a corresponding record in my application's database. The set of IDs comes from a database as well, but ...
0
votes
5answers
322 views
Comparing using Map Reduce(Cloudera Hadoop 0.20.2) two text files of size of almost 3GB
I'm trying to do the following in hadoop map/reduce( written in java, linux kernel OS)
Text files 'rules-1' and 'rules-2' (total 3GB in size) contains some rules, each rule are seperated by endline ...
0
votes
2answers
214 views
Matching people based on names, DoB, address, etc
I have two databases that are differently formatted. Each database contains person data such as name, date of birth and address. They are both fairly large, one is ~50,000 entries the other ~1.5 ...
0
votes
0answers
16 views
Comparing instances of a composite class for equality
I am trying to implement a class that will execute certain calculations only if the corresponding parameters have changed in order to save time in the analysis of data. I have found some information ...
0
votes
3answers
89 views
Odd behaviour comparing doubles
I have two seemingly equal doubles (at least when echoing them). When comparing them, for some reason, it evaluates to false. Are there any special considerations when performing this kind of ...
0
votes
2answers
140 views
Very strange FORTRAN bug with comparing integers
I'm trying to check how many times certain lines are executed in few timesteps, here is part of my code:
1)write "countd" every time:
real(kind=8) function dergfm(jp,ip,lp)
integer :: jp,ip,lp,countd
...
0
votes
3answers
299 views
compare two generic list containing class objects
How do i compare two generic list(of cSystem) in my cSystemCatalog class? I wanna know if one of the list contains more or fewer class objects, I also want to compare _systemKey and _systemName
...
0
votes
2answers
68 views
iPhone Operators
Okay so I have defined my DSNavigationManager class and it has a property called DSNavigationManagerStyle managerStyle:
typedef enum {
DSNavigationManagerStyleNone = 0,
...
0
votes
3answers
109 views
comparing Session value problem in php
if ($_SESSION['user_email']!=$_SESSION['ship_user_email'])
{
$to= $_SESSION['ship_user_email'];
mail($to,$subject,$mail_html,$headers);
}
there is problem in comparing values ...
0
votes
1answer
62 views
How do I compare between ByteString and ByteSymbol in squeak?
I want to execute the following code:
methodName := thisContext sender method selector.
aClass selectors do: [:current | current == methodName ifTrue: aBlock].
Although the strings are equal, it ...
0
votes
1answer
324 views
UIWebView comparing current and defined URL's with a loop depending on result
I am trying to compare the current url in webView with a defined url say google.com
so in theory..
NSURLRequest *currentRequest = [webView request];
NSURL *currentURL = [currentRequest URL];
...
0
votes
4answers
252 views
comparing GIF images pixels
I need to compare 2 same-size, nearly identical images for exact differences in the RGBs of every pixel.
I would like to find a tool that already does it... seems nowhere to be found on google, ...