The analysis required to assess the differences and similarities between two or more entities.
0
votes
3answers
42 views
Compare file lines for match anywhere in second file
This is frustrating.
I have 2 text file that are just a phone number per line.
I need to read the first line from file1, and search file2 for a match.
If there is a no match, write the line value to ...
0
votes
1answer
19 views
Using ant, check or compare all items listed in a file appear in another file or list
I was wondering if you could help. I am new to ant scripting.
I want to be able to compare two lists. File1.txt will contain a list of a lot of parameters and file2.txt will only contain a section ...
-1
votes
1answer
31 views
Reason for difference between two parts of code to be traced
The code, that does not work is this one: (Just consider the Note-part; Main() is only for creating the systrayicon (which was at first implemented with the win32gui because of tkinter, but in qt it's ...
0
votes
1answer
21 views
Format date compare date XSLT
I have an XML file with description and date about events like this:
<?xml version="1.0" encoding="ISO-8859-1"?>
<?xml-stylesheet type="text/xsl" href="timedate.xsl"?>
<catalog>
...
1
vote
5answers
24 views
Convert NSDictionary value (id?) to NSString or NSNumber to compare it
pls help me with my trouble:
I can't compare to value to know successful result was or not.
I fetch json-object as NSDictionaty:
NSDictionary *returnDictionary = [NSJSONSerialization ...
0
votes
0answers
7 views
CompareDialog is making me click on each structure element to see the text
I'm working on creating a CompareEditor that does custom comparisons based on input that comes from an Abstract Syntax Tree.
The input fed into the CompareEditor comes from DiffNodes, each ...
0
votes
2answers
23 views
Save Queue to File, Then load it and compare with Original
I have a Problem saving a Queue to a file, loading it afterwards into a new queue and then compare the old Queue with the new Queue.
I have a simple TestMessageClass, now i want to serialize the ...
1
vote
3answers
79 views
Oracle Replace function
I need to replace the Table1's filed values from Table2's values while select query.
Eg:
Table1:
Org Permission
--------------------------------------
Company1 1,3,7
...
1
vote
1answer
44 views
Using R to combine only “new” timeseries observations between 2 datasets
Using a separate program, I am collecting timeseries observations every 5 minutes and then generating a CSV file every 5 minutes that includes all 5 minute observations for the current month. I am ...
2
votes
3answers
85 views
C++ finding doubles in list
I have to find if there are doubles in my list<SnakeParts> and set alive to false if there are doubles
I tried with the unique() function of the list and added an operator==() to my class.
now ...
0
votes
3answers
73 views
Checking if strings are the same c++
For my case, I have to check if 2 strings are the same. The probelm I'm getting, is that No matter what I input, I'm getting a true value regardless of what I put in.
bool ...
0
votes
4answers
70 views
php compare/diff an array with an array of objects
I have 2 PHP arrays, a simple one:
array
0 => int 5
1 => int 6
and an array of objects:
array
0 =>
object(stdClass)[43]
public 'id' => int 1
1 =>
...
0
votes
4answers
39 views
compare two elements of the same class instance variable in rails
It would be very basic but I'm newbie to rails please help.
I've some results in class instance variable called @product. I want to compare two product results. @product has several ids. I want to ...
1
vote
2answers
82 views
Comparing nan (greater and greater equal)
I already know that if(nan != nan) -> TRUE, which is quite logical (sqrt(-1) has to be unequal to 0/0).
The following line of code is also logical:
if(nan > 90.0f) -> FALSE
...nan is not ...
0
votes
1answer
25 views
How to compare array from file with sql database query?
I tried to select all columns from my table at database that is same as on row in array in file. For example:
TABLE:
id name
1 A
2 B
3 C
FILE:
A
B
I want to select only A and B.
My source:
use ...
0
votes
5answers
78 views
Is there a function to compare a string to a larger string? [duplicate]
A better way to explain my question is like this
List the names of someone whose names contain a given string. For example, if the given string is "John,", the system will display the names of every ...
1
vote
1answer
19 views
Data Annotations Extensions EqualTo and Compare not working
I am using MVC3 and razaor view engine
I am trying to make sure that password and confirm password should match but this is not working for me. It just keeps on telling me "password" and "confirm ...
0
votes
1answer
37 views
Find matches in 2 columns, compare data in third column with VBA
I am hoping someone can help. I am comparing prices of products between a master sheet and a local sheet. I need to flag when the prices don't match. The master sheet contains all possible products ...
3
votes
1answer
49 views
How can I compare two arrays, removing similar items, without iterating through the whole array?
Is it possible to compare two arrays and remove the values that are equal (if they are at the same index), without iterating through both arrays? Here is an example:
$array1 = @(1,2,3,4,5,6,7,23,44)
...
-1
votes
0answers
35 views
EXCEL 2007 - Compare a cell value to a range of values containing comma delimited lists [closed]
I have two worksheets, but the there is really only 1 column in each worksheet that is giving me a headache.
Both Worksheet 1 & Worksheet 2 has a column E that each contains only 1 value, the ...
0
votes
1answer
33 views
Comparing Values of 2 dictionaries in Python and Constructing New dictionary From Comparison
I am using Python 2.7.4. I am trying to compare values from two different dictionaries in python and construct a new dictionary based upon the results of the comparison.
my users input the post ...
0
votes
3answers
30 views
What is best tool to compare two different Database ,the first database is Ms Sql and another is DB2
I have two database ,
First Db is Microsoft SqlServer (version 2008 R2) and second database is DB2
i need a tool for comparing schema and tables in both ot them ?
is every body have idea or ...
1
vote
1answer
47 views
compare two clock signals
we are designing a robot for my university project with a group, we are first year electrical engineering students. the robot has to detect mines with a simple LC oscillator en comparator. the output ...
0
votes
2answers
63 views
Compare array php foreach loop
I have 2 arrays and i want to create an output array.
Example array requirements for Title and Subtitle field:
Array
(
[title] => Array
(
[required] => 1
[minLength] => ...
0
votes
1answer
30 views
what is different between scrum, XP and RUP
Can u tell me shortly the difference and similarity between those methodologies: scrum, XP and RUP. Can u compare using table, it better for me to understand. Im new to this.
Shortly but fully ...
1
vote
2answers
48 views
Difference between && and -a in BASH
From what I know, && and -a both provide the conditional AND function in an expression for a BASH shell. Is there any difference between the 2 of them?
-6
votes
2answers
36 views
bash: compare 2 files, then output third file with same pattern [closed]
So here is my problem: I have 2 files:
File a:
Username ID ChanelName
somename 1 Ime1
somename 6 Ime2
somename 16 Ime3
somename 12 Ime4
somename 19 Ime5
File b:
ID ...
0
votes
0answers
11 views
Excel Auto Delete
I'm a total excel newbie, so dumbing down your answers as much as possible would be super helpful.
I'm dealing with a table that has around 600.000 lines of data. Entries in Column A are repeated ...
0
votes
3answers
69 views
Compare very large numbers stored in string
What is the best way to compare two very large numbers contained in string literals?
For example I want to compare the followings:
...
0
votes
1answer
10 views
ActiveRecord test Greater/Lesser Than inside Hash Condition
The Question: Is it possible to test within a hashed condition if an attribute of a joined table is greater/lesser than a value
AN EXAMPLE: test if actors age is greater than ageVariable:
Is it ...
0
votes
2answers
52 views
Comparing two mysql recordsets using php
I need to compare two mysql recordsets using php
Comparing a record in the first recordset is present in the second and returns a true value, or a false if its not present.
The problem is once a do ...
0
votes
1answer
41 views
Convert NSString to NSDate to compare which one is newer?
First time caller, long time listener :) Love this site. I'm new to Objective-C but have a blast learning. I'm sorry for such a simple question but I can't figure this out. :(
I have two ...
0
votes
0answers
15 views
How to compare below output
I'M very new to shell scripting, below is my output in status.txt:
CM TARGET ACTUAL
---------------------------------------------- ---------- ...
1
vote
0answers
50 views
Compare values of specific keys in 2 different dictionaries to see if they are equal
I am trying to see if the values of specific keys in 2 different dictionaries are equal (which they are at certain times). If so, I want to print both dictionary values. If not, I only want to print ...
1
vote
1answer
44 views
Compare two colors in an image + Which is best to draw 3D points
I know that it possible using the
GetPixel()
but is it possible to let the sw to decide which one is lighter or darker than the other.
I'm going to use a depthMap Image & I want to ...
-2
votes
0answers
5 views
Create an sql script that compares two schemas and updates schema and insert date of update in a column in oracle 11g [closed]
Hi i need some help creating an sql script that can update info from one table in dbase1 to another table in dbase2 that has the same columns and if posible insert date and time in one column when the ...
5
votes
2answers
65 views
Matlab - How do I compare two strings letter by letter?
Essentially, I have two strings of equal length, let's say 'AGGTCT' and 'AGGCCT' for examples sake. I want to compare them position by position and get a readout of when they do not match. So here I ...
0
votes
3answers
36 views
PHP - Comparing form value with values in an array
I'm trying to write a code that compares the values from a text document with a value that has been posted from a form.
So far i've got this, but i'm absolutely positive i'm doing something way off. ...
0
votes
0answers
18 views
EXCEL - search, compare, and result
I have a spreadsheet with 2 sheets, thousands of rows, and tons of data.
I need some kind of lookup where is searches
Sheet2, Column C, Row 2
against
Sheet1, Column H, Row 1-infinity
for matching ...
0
votes
1answer
33 views
javascript - can't compare var of type int in conditional statements
I declare global var in script sitting in the head:
var numMonsters;
then i have somebody setup div with form that call js function also located in the head and there i assigning this var:
...
0
votes
2answers
43 views
php compare 2 array and manipulation increase value
I have 2 array
a=array(a=>1,b=>2,c=>2,d=>2,e=>2,f=>2)
and
b=array(a,b,d)
I want to make function compare_plus(array a, array b) like if array a have key== array b val then in ...
1
vote
1answer
27 views
Comparing and matching a range of data with another range of data
Each row of 4 columns represents a set of data
A1 : D1 1,2,3,4
A2 : D2 4,2,1,5
A3 : D3 5,3,2,1
etc.
Now the column set will be compared to another column set
F1 : I1 4,6,3,1
F2 : I2 ...
2
votes
3answers
75 views
compare file line by line python
What is the most elegant way to go through a sorted list by it's first index? Input:
Meni22 xxxx xxxx
Meni32_2 xxxx xxxx
Meni32_2 xxxx xxxx
Meni45_1 xxxx xxxx
Meni45_1 xxxx xxxx
Meni45 xxxx xxxx
...
0
votes
1answer
25 views
Wordpress WP_Query compare two dates
I'm trying to setup a custom post type page 'events' which lists out upcoming events and past events. The date for the event is stored in a custom field using (Advanced Custom Fields) plugin. Now I'm ...
0
votes
0answers
42 views
How to calculate number of months between two dates in JavaScript? [closed]
I found everywhere question like: How do I get the number of days between two dates, but nowhere get number of months between two dates in JavaScript - jQuery.
After much thought, I try one solution, ...
0
votes
1answer
59 views
look up for master data in R
i have a a problem with the following topic.
After using Excel, the workload of doing this is to high. Now i want to do it with R in a automatic way.
I have different Models of washing machines:
...
0
votes
2answers
39 views
jquery how to compare character string to end of other string [duplicate]
to check if stringA exists in stringB you may uses this condition
if ((stringA).match(stringB))
THe above detects the occurrence in any position: initially, in the middle, finally.
How to narrow ...
0
votes
4answers
87 views
How do I Compare two char[] arrays for equivalency?
Right now, I have two char arrays, foo1[] and foo2[]. When I convert them to string and output to the console, they BOTH appear as bar. I know that I can do something like this:
int g;
for (int ...
3
votes
1answer
74 views
Comparing char* in C++ lexicographically
I know that I can compare string by < > etc. but how to compare char* lexicographically?
0
votes
0answers
20 views
How to compare memory dumps in iOS?
I made 2 memory dump files with iOS, and I want to see the difference between these files. I made them with gdb (idk if this is important or not). I read a tutorial to do these dumps, and he said ...


