Tagged Questions
The multi-dimensional tag has no wiki summary.
18
votes
4answers
4k views
Why does C# Multidimensional arrays not implement IEnumerable<T>?
I have just noticed that a multidimensional array in C#, does not implement IEnumerable<T>, while it does implement IEnumerable. For single-dimensional arrays, both IEnumerable<T> and ...
9
votes
9answers
10k views
How to “flatten” a multi-dimensional array to simple one in PHP?
It's probably beginner question but I'm going through documentation for longer time already and I can't find any solution. I thought I could use implode for each dimension and then put those strings ...
6
votes
4answers
2k views
PHP best way to MD5 multi-dimensional array?
i was wondering what is the best way to generate an MD5 (or any other hash) of a multi-dimensional array?
I could easily write a loop which would traverse through each level of the array, ...
4
votes
4answers
2k views
Sort Array of MultiDiminsional Arrays on More Than One “Column” (Key) With Specified Sort Options
I'm looking to be able to sort an array of multi-dimensional arrays on more than one column. To further complicate it I'd like to be able to set specific sort options per key/column. I have what is ...
4
votes
4answers
676 views
Is a kd-tree suitable for 4D space-time data (x,y,z,time)?
I want to use a data structure for sorting space-time data (x,y,z,time).
Currently a processing algorithm searches a set of 4D (x,y,z,time) points, given a spherical (3d) spacial radius and a linear ...
3
votes
4answers
2k views
PHP - how to flip the rows and columns of a 2D array
Normally I'd be asking how to turn something like this:
1 2 3
4 5 6
7 8 9
10 11 12
Into this:
1 4 7 10
2 5 8 11
3 6 9 12
But ...
3
votes
3answers
179 views
Multi-dimensional filter to eliminate “bad” items from a large table?
I have a large table of N items with M (M>=3) distinct properties per item,
From this table I have to remove all items for which the same table contains an item that scores equal or better on all ...
2
votes
2answers
75 views
Smarty: Correct Array Missing Keys
I'm calling an API via PHP that returns a multi-dimensional array [$myArray].
I want to pass this array for use in my Smarty template but for some reason the array is returning without the first ...
2
votes
2answers
147 views
what exactly is a map dimension in a multi-dimensional map?
Like many these days, I am an old relational-model user approaching Cassandra for the first time. I have been trying to understand Cassandra's data model, and when I read about it I frequently ...
2
votes
3answers
2k views
Efficiently shrinking a two dimensional array in C#
What is an efficient way to shrink a two dimensional array to a smaller size in C#?
For example:
var bigArray = new object[100, 100];
var smallArray = new object[10, 10];
bigArray[0, 0] = 1;
...
1
vote
2answers
188 views
How to create Multidimensional array?
I want to create multidimensional array which has levels, groups and items.
1
vote
1answer
323 views
Android: Initialize a two dimensional array of type <class>
I'm sure that this is some basic misunderstanding on my part, but ...
I want to have a class:
public class Foo {
String bar;
}
And the declare a two dimensional array of them:
Foo[][] foobar = ...
1
vote
3answers
143 views
List values in multi-dimensional array in php
I have been working on this a while. I see multi-dimensional arrays in php are not that easy.
Here is my code:
while (list($key,$value) = each ($x))
{
Print "$key => ...
1
vote
2answers
265 views
2-dimensional glRotatef()
(iPhone) I'm trying to make it so that the user can rotate an object by dragging his finger on the screen. Dragging left or right should rotate around the Y-axis, and dragging up or down should rotate ...
1
vote
2answers
177 views
Arrays, multi-dimensional and jagged…in C#
C# through ASP.Net 2.0.
In a datatable I have two columns of IDs, attributeId and productAttributeID.
I want to loop through this table and 'group' them in such a way that productAttributeIds have ...
1
vote
3answers
276 views
PHP: Iterating through array?
What I want, is a function that
searches through my array, and
returns all the
children to a specific node. What is
the most appropriate way to do this?
Will recursion be necessary in this case?
I ...
1
vote
8answers
6k views
How to deep copy an irregular 2D array
How can I deep copy an irregularly shaped 2D array in Java?
Ie.
int[][] nums = {{5},
{9,4},
{1,7,8},
{8,3,2,10}}
I'm unable to use ...
0
votes
1answer
46 views
find file path from multi-dimensional array
I got directory array below.
I will make a file search in this array. For example path.php , survey.php...
If file is found , how should a construct the path.
for path.php
I want function to ...
0
votes
1answer
559 views
Multi Dimensional Array Assignment from Dataset
I am attempting something along the line of below mentioned code. Though it works in single dimension array. How to make it work with 2-d array?
Dim arrayord(,) As String = ...
0
votes
2answers
321 views
JSON Multi dimensional Array to Java Multi-Dimensional Array
I am trying to convert a JSONArray whose String format is multi-dimensional to a Java multi-dimensional array. I have tried a lot of ways by myself and am getting lost in my task. Hopefully someone ...
0
votes
3answers
119 views
Cannot populate array within an array — Javascript
So I have an array within an array. It is called r0w. Here's what it looks like:
r0w[0] = [1,38,0,63,20,39,1,36,36,36,34,35,35,36,36,37,1]
r0w[1] = [1,38,63,124,20,101,1,36,36,36,34,35,35,36,36,37,1]
...
0
votes
1answer
141 views
Multidimensional scaling in C#
Is there any library for C# to do multidimensional scaling, like the mdscaling function in Matlab?
I'm trying to visualy represent multidimensional data on a single graph
0
votes
1answer
364 views
PHP Array Intersection
Maybe someone can help me find the array intersection of a multidemsional array like this one:
[attributes] => Array
(
[Color] => Array
...
0
votes
1answer
851 views
WPF Two-dimensional DataGrid/ListView?
I have a table Item that consists of 3 columns:
ItemId int PK
RoomId int FK
UnitId int FK
Cost money
I want to have a DataGrid/ListView having dynamically-generated columns and rows representing ...
0
votes
1answer
110 views
Creating a multi-dimensional array with keys from a simpler PHP array
I have an array of documents, where each document have another simple one-dimensional array of facets (simple textual labels attached to the document) that have structural value in their order (0 from ...
0
votes
2answers
329 views
Loop through Multi-Dimensional Array and Print
I have an array that I would like to pull certain information from and output it using php/html (i.e. game, id, rating). I have the basics down, although I only get the information from the first ...
0
votes
2answers
2k views
How to split a multidimensional array in PHP?
How can I take a multi-dimensional array like the below, and split it into multiple separate arrays? Additional challenge: Although I know there are two pairs in the example below (pageviews, visits), ...
0
votes
5answers
2k views
How to create mutlidimensional list for this in C#?
I got a table (in file) which I split into blocks by spaces.
I need structure like this:
-----------------------------
|21|22|23|33|3323|
|32|32|
|434433|545454|5454|
------------------------------
...
0
votes
3answers
431 views
How do I best process my multi-dimensional arrays in PHP?
I have an app that shows store sales. It is a multi-dimensional array, so each value in the root array is an array containing [sales], [cost], [date], etc. for the given day it pertains to. OK, there ...