Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

16
votes
9answers
26k views

How do I sort a multidimensional array in php

I have CSV data loaded into a multidimensional array. In this way each "row" is a record and each "column" contains the same type of data. I am using the function below to load my CSV file. ...
10
votes
4answers
493 views

Generating multidimensional data

Does R have a package for generating random numbers in multi-dimensional space? For example, suppose I want to generate 1000 points inside a cuboid or a sphere.
9
votes
5answers
1k views

Pointer address in a C multidimensional array

I'm messing around with multidimensional arrays and pointers. I've been looking at a program that prints out the contents of, and addresses of, a simple array. Here's my array declaration: int ...
9
votes
8answers
9k views

How do I best handle dynamic multi-dimensional arrays in C/C++?

What is the accepted/most commonly used way to manipulate dynamic (with all dimensions not known until runtime) multi-dimensional arrays in C and/or C++. I'm trying to find the cleanest way to ...
9
votes
5answers
4k views

Slicing a multi-dimensional PHP array across one of its elements

Say for example you just queried a database and you recieved this 2D array. $results = array( array('id' => 1, 'name' => 'red' , 'spin' => 1), array('id' => 2, 'name' => ...
7
votes
3answers
269 views

php array generation challange

Please help. I need randomly generate an 2 dimensional nXn array . lets take for now n=10; array should have such structure. one example $igra[]=array(0,1,2,3,4,5,6,7,8,9); ...
7
votes
7answers
14k views

How can I create multidimensional arrays in Perl?

I am a bit new to Perl, but here is what I want to do: my @array2d; while(<FILE>){ push(@array2d[$i], $_); } It doesn't compile since @array2d[$i] is not an array but a scalar value. How ...
6
votes
3answers
198 views

How to optimize two-dimensional hash traversing in Perl?

I have a hash of hashes %signal_db. A typical element is: $signal_db{$cycle}{$key}. There are 10,000s of signals, and 10,000s of keys. Is there any way to optimize (timewise) this piece of code: ...
6
votes
8answers
18k views

how to return two dimensional char array c++?

i ve created two dimensional array inside a function, i want to return that array, and pass it somewhere to other function.. char *createBoard( ){ char board[16][10]; int j =0;int i = 0; ...
6
votes
8answers
3k views

Best way to represent a 2-D array in C++ with size determined at run time

In C++ I'd like to do something like: int n = get_int_from_user(); char* matrix = new char[n][n]; matrix[0][0] = 'c'; //... matrix[n][n] = 'a'; delete [][] matrix; but of course this doesn't ...
6
votes
4answers
1k views

Computationally efficient three dimensional arrays in C

I am trying to solve numerically a set of partial differential equations in three dimensions. In each of the equations the next value of the unknown in a point depends on the current value of each ...
5
votes
1answer
586 views

Perl: Threading with shared multi-dimensional hash

I am trying to share a multi-dimensional hash over multiple threads. This hash holds 2 connected key-pairs, I need to know if they are already connected, if they are not, I need to connect them, if ...
4
votes
2answers
158 views

Random projection algorithm pseudo code

I am trying to apply Random Projections method on a very sparse dataset. I found papers and tutorials about Johnson Lindenstrauss method, but every one of them is full of equations which makes no ...
4
votes
3answers
323 views

Javascript: multi-dimensional object

I want to create an object, starting from something like: var map = {}; Then, I want to add items with this function: add = function(integerA, objectB) { map[objectB.type][integerA] = objectB; ...
4
votes
2answers
740 views

2D integrals in SciPy

I am trying to integrate a multivariable function in SciPy over a 2D area. What would be the equivalent of the following Mathematica code? In[1]:= F[x_, y_] := Cos[x] + Cos[y] In[2]:= ...
4
votes
2answers
4k views

php how to group a multidimensional array by a particular value?

Hopefully, I can explain this correctly... I have a multidimensional array and am trying to group them according to the value of one the keys. So, I'm trying to group them by level, but I won't ...
4
votes
5answers
418 views

Multi-Dimensional Graphing Libraries for Java

I have been working on projects that deal with 2-Dimensional graphing, UML diagramming and relational graphing (node-link diagrams). I am interested in moving to projects that deal more with ...
4
votes
8answers
14k views

Traversing a multi-dimensional hash in Perl

If you have a hash (or reference to a hash) in perl with many dimensions and you want to iterate across all values, what's the best way to do it. In other words, if we have $f->{$x}{$y}, I want ...
3
votes
2answers
61 views

What would be the most efficient/clean way to deeply sort a multidimensional list in Python?

Example: From this list: list = [[10, 9, 1], [2, 1, 1,], [4, 11, 16]] I'd like to have: print list [[1, 1, 1], [2, 4, 9], [10, 11, 16]] Is it possible with the list.sort() function or do I ...
3
votes
2answers
225 views

MATLAB: Finding coordinates of value in multidimensional array

I have a three-dimensional array, and I'd like to be able to find a specific value and get the three coordinates. For example, if I have: A = [2 4 6; 8 10 12] A(:,:,2) = [5 7 9; 11 13 15] and I ...
3
votes
2answers
215 views

Scala's multidimensional arrays one more time

var channelsNumber = track.getNumberOfChannels() var framesNumber = lastFrame - firstFrame var frames = Array.ofDim[Int](channelsNumber)(framesNumber) System.out.println(frames.length); ...
3
votes
2answers
209 views

Double Pointers, and Arrays

When you create the multi-dimenstional array char a[10][10], according to my book it says you must use a parameter similiar to char a[][10] to pass the array to a function. Why must you specify the ...
3
votes
3answers
323 views

Storing and reloading large multidimensional data sets in Python

I'm going to be running a large number of simulations producing a large amount of data that needs to be stored and accessed again later. Output data from my simulation program is written to text files ...
3
votes
3answers
140 views

algorithm to traverse 3D coordinates without revisiting

Say we have a set of 3D (integer) coordinates from (0,0,0) to (100,100,100) We want to visit each possible coordinate (100^3 possible coordinates to visit) without visiting each coordinate more than ...
3
votes
4answers
2k views

C++ Passing a dynamicly allocated 2D array by reference

This question builds off of a previously asked question: Pass by reference multidimensional array with known size I have been trying to figure out how to get my functions to play nicely with 2d array ...
3
votes
7answers
11k views

Three dimensional arrays of integers in C++

I would like to find out safe ways of implementing three dimensional arrays of integers in C++, using pointer arithmetic / dynamic memory allocation, or, alternatively using STL techniques such as ...
2
votes
2answers
41 views

JQuery Multidimensional Array or Object Or Other Approach?

Basically, what I have is a questionnaire that is very dynamic & data-driven in nature... for each question i can have a question number, 0 or more options of radio buttons, 0 or ...
2
votes
2answers
69 views

Use Getopt::Long in Perl to get multidimensional data structures

I got this code below to work as I need, but would like to know if there's a better way of doing this without quotes. myScript.pl --filter 'key1 foo bar' --filter 'key2 baz qux' ...
2
votes
3answers
57 views

Guidance for retrieving JSON data into Javascript

I have searched here and on Google, but as an inexperienced Javascript hack I'm struggling to find a good example of what I believe is a rather straight forward action. I have a server-side script ...
2
votes
3answers
119 views

Best way to “wrap” an ArrayList in Java?

I would like to represent matrix-like data in a suitable data-structure in Java. The dimensions of this matrix depend on user-input. One way would probably be to use a "magic" max-constant, and use a ...
2
votes
1answer
175 views

Implementing a k-d tree for 'nearest neighbor' search in MYSQL?

I am designing an automated trading software for the foreign exchange market. In a MYSQL database I have years of market data at five-minute intervals. I have 4 different metrics for this data ...
2
votes
4answers
154 views

copy list in python

As I am trying to make a copy of a list and do some stuff with the copy of the list. Somehow my original list is modified as well. I already looked at different memory allocatinos and different ways ...
2
votes
1answer
127 views

Intersection of infinite volumes of any dimension

I need code/text/google keywords/other resources to implement this class. Speed doesn't matter. It should just work for any number of dimensions. class InfiniteVolume: # such as a point, line, plane, ...
2
votes
2answers
104 views

Best tree structure for Multi-dimensional data

To organize multi-dimensional data, What is the most useful and efficient tree data structure? (eg, K-D-B tree, region quadtree, R-tree) I want to know best search time and best space utilization ...
2
votes
3answers
329 views

How do I initialize a two-dimensional List statically?

How can I initialize a multidimensional List statically? This works: List<List<Integer>> list = new ArrayList<List<Integer>>(); But I'd like to init the list with some ...
2
votes
2answers
53 views

Create blocks of times from multidimensional array

I am working on a scheduling system and I need to grab all consecutive times of 4 or more which I have accomplished: Array ( [0] => Array ( [0] => 18:00:00 [1] => ...
2
votes
2answers
324 views

Joining multidimensional arrays with LINQ on key indices

I have N multidimensional source data arrays, each with the same number of columns (C=4 in this example), but any number of rows: var array1 = new double[,] { { 1, 2, 3, 4 }, { 5, 6, 7, 8 ...
2
votes
3answers
916 views

How do I create a multidimensional HashMap or Hashtable in JSP / Java and convert it to a JSON object?

I need help creating a multidimensional HashMap or Hashtable in JSP. Why I do I need HashMap or HashTable? Because I ultimately want to pass back to the client a JSON object. If there is another ...
2
votes
1answer
377 views

PHP Remove duplicates from multidimensional array based on key

I have a multidimensional array ($array) in which the entries look like: { ["upload/example.gif"]=> array(5) { ["title"]=> string(12) "This is me" ["excerpt"]=> string(24) "This ...
2
votes
1answer
205 views

numpy: operating on multidimensional arrays

Sorry for title's vagueness. I have two related questions. First, let's say I have a function "hessian" that given two parameters (x, y) returns a matrix. I now want to compute that matrix for (x,y) ...
2
votes
4answers
81 views

Sorting Multidimensional Array by the Values

I have the following array. Array ( [0] => Array( [vendorid] => 36 [vendorname] => Nothin' But A Muffin [vendorfriendlyname] => ...
2
votes
2answers
274 views

comparing multidimensional array

I have the following array: Array ( [0] => Array ( [0] => 87 [1] => 58 [2] => 85 [3] => 86 ) [1] => Array ...
2
votes
2answers
354 views

C# rectangular array sort

string[,] desc = new string[255,10]; int descLines = 0; cont string RDATAPATCH = "rctdata.xdb"; using (StreamReader sr = new StreamReader(RDATAPATCH)) { descLines = 0; while (sr.Peek() ...
2
votes
4answers
355 views

PHP sort multidimensional array with primary & secondary keys

How do you sort a multidimensional array by primary and secondary key? For example, assuming the following array: $result = array(); $result[0]["prio"] = 1; $result[0]["date"] = '2010-02-28'; ...
2
votes
5answers
449 views

Get array's key recursively and create underscore seperated string

Right now i got an array which has some sort of information and i need to create a table from it. e.g. Student{ [Address]{ [StreetAddress] =>"Some Street" ...
2
votes
4answers
164 views

Mathematica ListcontourPlot3D

I have data in the form { {x,y,z,f}...} I am using ListContourPlot3D but all I get is an empty box with dimensions -1,1 in each direction. Here is my code: ListContourPlot3D[data5, PlotRange -> All, ...
2
votes
3answers
666 views

c# cube / multidimensional dataset

I'm working on a problem where i need to process multi dimensional data in memory using C#. My requirement resemble OLAP cubes but are not as complex. for example i don't need calculations or ...
2
votes
1answer
809 views

C++: How to make constructor for multidimensional vector?

I want to create two and three dimensional vectors using a constructor in a class. However, I do not know how for multidimensional vectors. One dimensional works: class One{ public: ...
2
votes
3answers
4k views

php - get the maximum value from an element in a multidimensional array?

I'm trying to select the maximum value for a particular key in a multidimensional array. I'm having trouble "getting to" the key in question... So, the array (which is much more lengthy than what ...
2
votes
2answers
708 views

php - recreate array from flat to multidimensional?

I am trying to take a flat array and recreate it so that it's multidimensional. I've been looking into array_combine and array_merge, but I'm not sure that either of those will give me what I'm hoping ...

1 2 3 4 5