The pair tag has no wiki summary.
0
votes
1answer
39 views
How to fill and access to std::map<std::pair<enum1, enum2>, funcPtr>?
I would like to know how to fill this type of map and mainly the way to access to the function pointer.
The map :
enum enum1
{
val11,
val12,
val13
};
enum enum2
{
val21,
val22,
...
4
votes
1answer
180 views
Why was the std::pair class standard changed to disallow types with only a nonconstant copy constructor in C++11?
I am reading through Nicolai M. Josuttis' "The C++ Standard Library (Second Edition)" and have just reached the section on std::pair. The author notes that:
Since C++11, a pair<> using a ...
0
votes
1answer
26 views
how to make an Adjacency List using a vector of vector pair in c++?
I'm trying to create an Adjacency list using a vector of vector pair, and whenever I run the code it stops working. For now, I'm only trying to add the first pair in the Adjacency List "AdjList". Is ...
0
votes
3answers
52 views
How to pair up two lists?
I'm a bit of a Python beginner so I apologise if this is a very basic question.
I have two lists of data which are obtained from:
with filein as f:
reader=csv.reader(f)
xs, ys = ...
1
vote
1answer
33 views
find pairs with distance in ruby array
I have a big array with a sequence of values.
To check if the values in place x have an influence on the values on place x+distance
I want to find all the pairs
pair = [values[x], values[x+1]]
The ...
0
votes
0answers
53 views
error in plot.new(): figure margins too large, pairs() command
I have a dataframe which contains 23 continuous variables.
Before I start analysing the data, I want to check for correlations.
I usually do this by the pairs() function, like this:
pairs(mydata, ...
0
votes
1answer
43 views
android: how to query a key value pair efficiently
I have about 3000 pairs of (key,value). They are fixed and will not be changed forever. In my app, there is a page that needs to make around 200 queries. For each query, they take the key and ask for ...
-1
votes
1answer
30 views
array of an even number of integers and pair [duplicate]
I want to make an array of an even number of integers to be given given as pairs in the order
and to be like this:
height_1, IQ_1, height_2, IQ_2, etc.
The input will be like this:
...
4
votes
2answers
77 views
Lazy generation of pairs of adjacent elements in a “circular list”
To check for ray-triangle collisions, we can first see if the ray collides with the triangle's plane. If it does, we then check if the intersection point is on the same side for all triangle sides. If ...
2
votes
2answers
48 views
How would one push back an empty vector of pairs to another vector?
std::vector<std::vector< std::pair<int, int> > > offset_table;
for (int i = 0; i < (offset.Width()*offset.Width()); ++i)
{
offset_table.push_back( std::vector< ...
0
votes
1answer
27 views
order of no. of comparisons required for taking pairs out of a set of n numbers
I have a set of n numbers S = {a1, ...an}. I have a classifier that takes a pair of any two numbers and produces a result. I discard pairs like (a, a). (ai, aj) is treated as different from (aj, ai).
...
0
votes
0answers
21 views
What examples are there for the “closest pair of points”?
I'm looking for a motivational example for the "closest pair of points problem"
http://en.wikipedia.org/wiki/Closest_pair_of_points_problem
In itself it's a pretty self explanatory problem, but I ...
1
vote
2answers
24 views
SQL Pairing Columns from one Table
i need to pair 2 supplier names via the city they are located in.
<name supplier a> <name supplier b> <location>
I got that form via Crossjoining the one Supplier table - now i ...
4
votes
2answers
115 views
Can all objects be paired in a sequence?
First of all, this is not a homework or something like that, this is a suggestive problem from my last question Candidate in finding majority element in an array.
There are n kinds of objects O1, O2, ...
1
vote
1answer
119 views
Count Word Pairs Java
I have this programming assignment and it is the first time in our class that we are writing code in Java. I have asked my instructor and could not get any help.
The program needs to count word pairs ...
0
votes
5answers
80 views
Dictionaries and pairs in R
In R I was wondering if I could have a dictionary (in a sense like python) where I have a pair (i, j) as the key with a corresponding integer value. I have not seen a clean or intuitive way to ...
0
votes
0answers
42 views
android bluetooth pairing different behavior
I have developed an app that prints receipts to a bluetooth printer (Star Micronics).
When I execute my app on an Android tablet with 4.1 OS everything works.
When I execute my app on an Android ...
3
votes
3answers
66 views
How to implement equals for generic pairs?
Just for fun, I'm trying to implement a generic Pair class in Java. I'm having trouble with equals:
public class Pair<A, B>
{
public final A _1;
public final B _2;
// ... ...
0
votes
2answers
47 views
Batch pairs of numbers or exponents
I'm making a batch program to solve some equations, I'm hoping that my end result can give me the binary for a QR code. Anyway, I just started with the calculations with exponents. My problem is that ...
1
vote
2answers
26 views
How to have a pair whose second element is a list?
I'd like to have a pair whose second element may be either a symbol or a list. For example, '(x . y) and '(x . (a b c d)) are both valid pairs in my context. If the second element is just a symbol, I ...
-7
votes
3answers
96 views
How to realize class pair in Java like in C++ [duplicate]
How to realize class pair in Java like in C++, for using like in C++;
Thank you!
0
votes
1answer
37 views
Dote size in pairs plot
I managed to make a plot with the r function "pairs" (the value of the Kendall tau's in the lower panel and pairs-plots in upper panel). Still i have one problem. How do I change the size of the dots ...
8
votes
3answers
130 views
Efficiently generating unique pairs of integers
In MATLAB, I would like to generate n pairs of random integers in the range [1, m], where each pair is unique. For uniqueness, I consider the order of the numbers in the pair to be irrelevant such ...
0
votes
2answers
80 views
Is there any performance loss for tuple with only 2 elements?
Compared with pair, is there any performance loss for tuple with only 2 elements?
0
votes
2answers
39 views
how to sort a vector or deque KeyPair
i have a deque <pair<int, int> > r;
i need to sort all by second parameter, and return a deque of first all parameters.
for example
deque<pair<int, int> > r;
...
-3
votes
2answers
60 views
Merge two vectors of pair [closed]
#include <vector>
using namespace std;
class x{
public: vector <pair <int,int> > a[100];
};
int main()
{
x p,q;
}
I want to merge the a array from p object with the one from ...
0
votes
2answers
81 views
Ordering int pairs [duplicate]
I have a list of int pairs such as
[(1,2),(3,5),(0,1),(1,3),(3,0),(0,3)]
I want to order this list from the smallest pair to the greatest. For the example above , it should be
...
3
votes
3answers
296 views
haskell infinite list of incrementing pairs
Create an infinite list pairs :: [(Integer, Integer)] containing pairs of the form (m,n),
where each of m and n is a member of [0 ..]. An additional requirement is that if (m,n)
is a legit member of ...
0
votes
0answers
51 views
How to insert key => value pairs in the Advanced REST Client?
I have this structure so far:
But datos[pedido][cesta] is another key => value pair matrix where I store product data as in id => quantity for a shopping cart in an iOS app.
How can I add key => ...
0
votes
1answer
74 views
How to get the pairs from one list in Prolog?
I'm new in Prolog and I can't figure out how to obtain the result.
I want to compute the possible combinations of pairs in the list.
Example: input is a list [a,b,c], I want to obtain the pairs ...
0
votes
1answer
99 views
merging dotted pairs into a huffman tree
I have a procedure called make-leaf-set which creates leaf-nodes and another procedure that sorts the lowest first-high.
(define (make-leaf-set pairs)
(if (null? pairs)
'()
(let ((pair ...
0
votes
0answers
22 views
glm with paired data
I'm new in the "R" world so it might seem as a dumb question but I was wondering if it is possible to do a GLM in R with paired data (like a t-test) and what I should add to do this.. (paired=T?)
...
0
votes
3answers
110 views
Not able set map value with pair type key
#include <vector>
#include <map>
#include <algorithm>
using namespace std;
class NodePoint {
public:
int x, y;
NodePoint (int i, int j){x=i; y=j;}
NodePoint (){}
bool ...
3
votes
5answers
219 views
How to make unordered set of pairs of integers in C++?
The program does not compile an unordered set of pairs of integers, but it does for integers. Can unordered_set and its member functions be used on user defined types, and how can I define it?
...
0
votes
3answers
122 views
How to overload compare operator for a set of pairs?
I wish to know how to overload and pass a < (less than) comparator to a set of pairs of integers.
class A{
public:
typedef std::pair<int, int> pair_type;
bool operator<(const ...
3
votes
1answer
189 views
std::make_pair : cannot convert 'ch' (type 'char') to type 'char&&' [duplicate]
What's is wrong with the following code:
#include <ctime>
#include <vector>
#include <utility>
#include <algorithm>
#include <iostream>
int main()
{
std::vector< ...
0
votes
0answers
123 views
Cointegration based Pairs trading
I am back testing a Pairs trading strategy with one minutes data from 2006-2012 by using the co integration method. I tried couple of combination for formation and trading period.
Case1: 20 days ...
1
vote
3answers
133 views
c++ map using pair as key
I am using a map (which seemed the best implementation after a previous question, with a pair key, as a 'container' for incoming messages that can be sorted according to sourceID and priority i.e. ...
0
votes
2answers
118 views
sort pair vs. struct : which one is faster?
sorry for my bad English :
I want to know sorting(using STL) an array of pairs is faster, or an array of struct (in c++) and why?;
for more info see below codes:
code 1: sort pair(by first)
...
0
votes
1answer
82 views
Need to find the first and last rows from a mysql table recursively and display them in a pair format (PHP+Mysql)
Say for example,I have a table with data :
Order by Some weight desc ,Rank asc :
ID : Weight : Rank desc
8 : 7 : 2
7 : 7 : 3
4 : 5 : 2
6 : 4 : 1
2 : 2 : 4
9 : ...
0
votes
1answer
77 views
How to use the pairs function combined with layout in R?
I am trying to add a simple legend to a customized pairs graph.
Here is the reproductible code (without my customized pairs function) :
layout(cbind(1,2),width=c(1,1))
layout.show(2)
...
0
votes
3answers
85 views
How can I store 2 points as a pair and have a list of pairs in Java?
I'm drawing lines on a jpanel as a buffered image using graphics 2D and I want to store the points as pairs, i.e the x and y coordinates of the start point as a pair and the x and y coordinates of the ...
4
votes
2answers
127 views
Using pair as key for hash_map under visual studio
Try to use pair as key value for hash_map under visual studio 2010.
Could not compile it.
int _tmain(int argc, _TCHAR* argv[])
{
hash_map <pair<int, int>, int> months;
...
-2
votes
1answer
87 views
Haskell Function that Takes a List of Pairs and A list and Returns a List [closed]
I have to write a haskell function that does the following:
mySub that takes a list of pairs and a list of values and returns a new list
where each occurrence of the first value in a pair is replaced ...
0
votes
2answers
106 views
Haskell Function that Takes A Pair of Values and a List
My home work has been driving me up the wall. I am supposed to write a function called
myRepl that takes a pair of values and a list and returns a new list such
that each occurrence of the first ...
0
votes
1answer
87 views
tuple pairs, finding minimum, python
I have some data which comes as tuple pairs within python, e.g.
data = [ (1, 7.57), (2, 2.1), (3, 1.2), (4, 2.1), (5, 0.01), (6, 0.5), (7, 0.2), (8, 0.6)]
How may I find the min of the dataset by ...
0
votes
3answers
80 views
How to change pair (> and <) operators behavior?
I'm trying to sort a vector< pair<int,char> > but i want to change the behavior of the comparison operators of the pair type , so that if the first values equal and it'a comparing with (>) ...
2
votes
2answers
148 views
Using R to find correlation pairs
VZ.Close CBOU.Close SBUX.Close T.Close
VZ.Close 1.0000000 0.5804478 0.8872978 0.9480894
CBOU.Close 0.5804478 1.0000000 0.7876277 0.4988890
SBUX.Close 0.8872978 0.7876277 1.0000000 ...
1
vote
3answers
74 views
How to pair similar objects from two sorted lists?
I'm trying to learn Scala (2.10). In this exercise, I have a case class:
case class Entry(name: String, version: String) { }
I have two sequences of such objects sorted by their name attribute:
S1 ...
-2
votes
2answers
106 views
I want to store a list of pair of values <val 1, val2> and sort the pair according to val2? [closed]
I have a pair of values . Which data structure should i use to store them so that i can sort the list according to integer2 and access them through indexing afterwards?



