Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
1answer
220 views

Finding the k-longest sequences in an one-dimensional array?

In context of the realization of a project I need to find the k-longest sequences in PHP. There are many ways to implement this - but which algorithm is the fastest for PHP? Which algorithm would you ...
4
votes
4answers
946 views

n-dimensional matching algorithm

Looking for some advice here. Does anyone know a good place to start looking into matching algorithm in a n-dimensional space. For example, any dating site out there must be using some sort of ...
3
votes
2answers
164 views

How do I get the two last dimensions of an N-D array as a 2D array?

I have a 3D array in MATLAB, with size(myArray) = [100 100 50]. Now, I'd like to get a specific layer, specified by an index in the first dimension, in the form of a 2D matrix. I tried myMatrix = ...
3
votes
3answers
905 views

C++ How to generate the set of cartesian product of n-dimensional tuples

I wish to generate some data that represents the co-ordinates of a cloud of points representing an n-cube of n dimensions. These points should be evenly distributed throughout the n-space and should ...
1
vote
2answers
78 views

n-dimensional traverse

I'm implementing the longest common subsequence for n dimensions. Current problem: how do I traverse the n strings? Simply nesting for loops won't work anymore, because I need n of them. What's the ...
1
vote
2answers
772 views

C++ 2D vector and operations

How can one create a 2D vector in C++ and find its length and coordinates? In this case, how are the vector elements filled with values? Thanks.
1
vote
3answers
525 views

Generate n-dimensional random numbers in Python

I'm trying to generate random numbers from a gaussian distribution. Python has the very useful random.gauss() method, but this is only a one-dimensional random variable. How could I programmatically ...
1
vote
2answers
2k views

Error: System.Data.Linq.Binary' cannot be converted to '1-dimensional array of Byte'

I am trying to return a binary from the DB using linq for display in the browser. The method below using ado.net works but I am trying to ypgrade to linq but the linq version returned the error. ...
0
votes
3answers
113 views

Java - How to build unique object tuples (n-dimension)?

I have the following challenge that I need to create unique object tuples out of object lists. The speical challenge is here how I can do it for dynamic list sizes (n-dimension)? It is easy in case ...
0
votes
5answers
118 views

is there any way to make a two dimensional database on vb 2010?

Im preparing a program for my teacher friends using vb 2010 express. They keep records about their students. I prepared a database that contains a table named "Mystudents". It has columns like ...
0
votes
2answers
106 views

Interpreting linear memory space as 1D,2D,…,ND efficiently in C

Is it possible to allocate a 1D memory space int *x=(int *)malloc(100*sizeof(int)); and then recast the returned pointer to 2D array e.g. int **y=(int **)x; and access it as if it was 2D array ...
0
votes
1answer
129 views

C++ Generate and store the co-ordinates of an n-cube

I want to write a function to generate and store the co-ordinates of an n-cube and I have no idea how to start. Specifically, I wish to generate the co-ordinates for an evenly or randomly distributed ...
0
votes
2answers
219 views

Points enclosed by a custom defined Hypercube

I have a N-dimensional vector, X and 'n' equidistant points along each dimension and a parameter 'delta'. I need a way to find the total of n^N vectors enclosed by the Hypercube defined with the ...
0
votes
2answers
211 views

determining the distance between points in n-dimensions

I am building a mySQL table listing points in n-dimensions, each dimension being indexed. Given any point in the n-dimensional system, I would like to be able to output all of the other points in ...