2
votes
3answers
153 views
Best way to store and retrieve this..?
I've been trying all night, and talk of maps, arrays, vectors and hash_maps have filled my head. im just confused now. i posted a previous question here: http://stackoverflow.com/q …
4
votes
9answers
122 views
Software for drawing scientific data
I'm looking for a software for drawing scientific data, mostly vectors, coordinate systems and diagrams, for example:
1
vote
1answer
71 views
How do you make a new dataset given a set of vectors?
Is there a way in R to build a new dataset consisting of a given set of vectors -- median1, median2, median3, median4 -- which are median vectors from a previous dataset s?
media …
1
vote
1answer
37 views
How to get x and y coordinates from a linear grid simply?
I have myself a linear grid of Vector2s stored in a Vector2[,] array, and i also have another Vector2 that lies within this grid. How can i simply extract both the nearest 4 grid p …
0
votes
2answers
78 views
Vector assignment problem
#include "iostream"
#include "vector"
using namespace std;
const vector<int>& Getv()
{
vector<int> w(10);
w[0]=10;
cout<<w.size()<<endl;
return w;
}
/ …
22
votes
5answers
620 views
Can WPF render a line path with 300,000 points on it in a performance-sensitive environment?
A simple XY line graph: The X axis will represent the complete range of possible rating percentages, from 0% on one end to 100% on the other. Specifically, the X value will represe …
13
votes
9answers
1k views
Subtracting 2 lists in Python
Right now I have vector3 values represented as lists. is there a way to subtract 2 of these like vector3 values, like
[2,2,2] - [1,1,1] = [1,1,1]
Should I use tuples?
If none o …
0
votes
0answers
42 views
Autocorrelation and shift vectors
Basically I'll be using Autocorrelation method to try to find cloned regions within an image.
This is what i did in MATLAB
i = imread ('D:\image.jpg')
I = rgb2gray(i);
imshow(I); …
2
votes
2answers
134 views
Global angle of 3d vectors
I have 3 Vectors, Up Right and Front that represent a direction.
I need to convert these into an XYZ angle (3 floats) so i can use with glRotatef()
Please help
[EDIT]
Its not r …
3
votes
4answers
170 views
How to “snap” a directional (2D) vector to a compass (N, NE, E, SE, S, SW, W, NW)?
I have a bunch of vectors normal to window surfaces in a 3D modelling software. Projected to the XY-Plane, I would like to know in which direction they are facing, translated to th …
3
votes
4answers
217 views
How do I make a matrix from a list of vectors in R?
Goal: from a list of vectors of equal length, create a matrix where each vector becomes a row.
Example:
> a <- list()
> for (i in 1:10) a[[i]] <- c(i,1:5)
> a
[[1] …
0
votes
2answers
129 views
Vector math and rectangles
I know this is more high school math(wow been a long time since I was there) but I am trying to solve this programatically so I am reaching out to the collective knowledge of stack …
4
votes
3answers
590 views
C++ Vector Pointers to Objects
I'm using a vector of pointers to objects. These objects are derived from a base class, and are being dynamically allocated and stored.
For example, I have something like:
vector …
1
vote
2answers
139 views
C++ Vectors Problem
well i have most probably an extremly stupid problem but could not figure it out and I m about to lose my sanity hope someone can help
vector<CvMat*> sample;
for(int x = 0; …
1
vote
4answers
316 views
Finding points on a line with a given distance
I have a question i know a line i just know its slope(m) and a point on it A(x,y) How can i calculate the points(actually two of them) on this line with a distance(d) from point A …
