The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
4answers
53 views

making multi-dimensional nulls or ones from numpy array

I want to create an array filled with ones or zeros based on this array testArray = np.array([7,5,3]) so the final result should look like [[1,1,1,1,1,1,1], [1,1,1,1,1], [1,1,1]]
0
votes
1answer
53 views

How to actually initialize a 2d vector of objects from a class/constructor

so far, the only link that was close to answering the question was this: How do I initialize a stl vector of objects who themselves have non-trivial constructors? However, I attempted to do that and ...
1
vote
1answer
36 views

Passing array of arrays via Ajax

I'm trying to pass an array of arrays via an ajax call to my php script. var myArray=$('input#thisIsAnArray').val(); var dataString='passedArray='+myArray; $.ajax({ type: "POST", ...
1
vote
1answer
31 views

sorting a multi-dimensional array

I'm really sorry if this has been answered before, but here is my problem I have this: array (size=256) 0 => array (size=2)<br> 0 => string 'name_a' ...
1
vote
1answer
64 views

Multi-dimensional segment trees

The problem I have to solve is the 4D version of the 1D problem of stabbing queries: find which intervals a number belongs to. I am looking for a multi-dimensional implementation of segment trees. ...
1
vote
2answers
423 views

PHP: sorting/searching data that has 2 keys (or an array of arrays by a sub-array key)?

I've hit this a few times and never found the best way to tackle it. It's easiest to illustrate with a concrete example. Sample data: product_id display_name display_order ---------- ...
0
votes
2answers
44 views

Accessing a multidimensional array using a one dimensional array in Javascript

If I have the following initialized... (fyi, in the code I'm basing it off of, both variables are dynamically created) // Start of Code that MUST stay unchanged. var myPrimaryArray = ...
0
votes
1answer
64 views

validate multidimensional array

As the question says i need to validate a multidimensional array, just so you know this is my first time actually using arrays so it might be a pretty bad script but it works and that's all I'm after ...
0
votes
1answer
63 views

Getting Result of Status ID from Bridge Table for Each Item

I'm hoping you can help out with this problem I'm having. I have a bridge table called 'events_delegates_bridge' which has 3 fields, 'id', 'event_id' and 'delegate_id'. I also have tables called ...
1
vote
1answer
112 views

flipping a multi-dimensional array java

i have a class that creates a canvas of characters with a desired width and height. within this i have a method drawLetter() (which basically changes the characters so that a letter appears on the ...
0
votes
1answer
59 views

How to do multi dimensional analysis for a data feed [closed]

I have a regular feed of data from our systems with following characteristics: The data is in tabular format with around 20 columns and all of these columns are unrelated to each other, for e.g. ...
0
votes
3answers
79 views

Can this 2 dimensional array work?

so far ive got: var Items = new Array(5); // this array contains the items BodyPaint = new Array(1, 0, 1, 0, 0, 0, 0, 0, 0); // this array gives stats for the item WolfFur = new Array(3, 0, 1, 0, 0, ...
1
vote
1answer
92 views

MySql result into grouped multi-dimensional array, I'm missing something

Could some fresh eyes please tell me what I'm doing wrong here? I'm sure it's something simple. The sql query that retrieves the data set: SELECT * FROM articles WHERE category='category' ORDER BY ...
2
votes
1answer
139 views

PHP - Return array of parents from multidimensional associative array for breadcrumb list

I'm trying to create dynamic breadcrumbs from an array. So I can add to the array and not have to manually update the breadcrumbs. Okay, here's a snippet of my array: (It won't go much deeper) $menu ...
1
vote
0answers
85 views

Convex hulls in d dimensions: java software?

I'm looking for a computational geometry package written in java (or which provides java bindings) that offers convex hull computation (specifically, listing the vertices of the convex hull) given a ...
1
vote
1answer
152 views

Excel VBA write to file for multi dimensional data

I have three dimensional data that I want to write into file in VBA. The data will have a time axis, a spatial axis, and a magnitude axis. So, the magnitude data would be in the form of A(space, ...
0
votes
1answer
57 views

Multi-dimensional Vector Pointer

I have the following multi-dimensional vector int main() { vector< vector<string> > tempVec; someFunction(&tempVec); } void someFunction(vector< vector<string> > ...
-1
votes
1answer
197 views

Populating a multi (more than 2) dimensional String array Java

I want to know if there are some method / strategy to populate a multi-dimensional array. private String[] MENU = {"MENU 1", "MENU 2", "MENU 3"}; private String[][][] SUBMENU = { {{"SUBMENU 11", ...
4
votes
1answer
527 views

How to Free Memory when Out-of-memory exception occurs in Delphi using SetLength

I have a piece of Delphi code var a: array of array of array of integer; begin try SetLength(a, 100000, 100000, 10000); // out of memory here doStuffs(a); except a = nil; // try to ...
-1
votes
5answers
354 views

Converting a multi-dimensional php array into a JSON array of objects

I need to create a multi-dimensional array in php and want to use it in a jQuery script as a JSON array of objects; The required output in the jQuery script should look like this: data = [ { ...
1
vote
2answers
74 views

How can I determine the dimensionality of a list?

How do I determine the dimensionality of a list programmatically? Thanks.
0
votes
2answers
153 views

How to get all the key in multi-dimensional array in php

Array ( [0] => Array ( [name] => A [id] => 1 [phone] => 416-23-55 [Base] => Array ( ...
0
votes
2answers
100 views

how to custom sort array by a specific month key

I am sure this has been answered somewhere before but I couldn't find the answer to this exact case... I know I can use the usort function, but can't figure out the logic to do what I want eventhough ...
0
votes
1answer
304 views

Accessing two dimensional arrays PHP

I'm not sure about an error I'm getting while accessing a two-dimensional array in PHP. Basically my var_dump() gives me the following: array(1) { ['x']=> string(1) "3" } array(1) { ...
0
votes
1answer
64 views

Classifying a N x L input-space (table form) through machine learning

I have searched quite a bit on google but can't seem to find any clear answer. Under normal circumstances, a training set of size M x N will be of the form (X (i), Y (i)), 1 <= i <= M, where ...
1
vote
1answer
182 views

Iterating through dimensions in MATLAB

How do I simplify these commands to a single line in MATLAB? medoidContainer(:, i, 1) = squeeze(reshape(container(:, :, 1),1, y * x)); medoidContainer(:, i ,2) = squeeze(reshape(container(:, :, 2),1, ...
0
votes
1answer
1k views

Nesting Maps in Java

I want to store many details (like name, email, country) of the particular person using the same key in hashtable or hashmap in java? hashMap.put(1, "Programmer"); hashMap.put(2, "IDM"); ...
1
vote
2answers
234 views

Setting second dimension of vector of vectors to zero (C++)

There is a vector of vectors: std::vector <std::vector <float> > VoV; VoV.resize(num); // num is determined at run-time for (int i=0; i<num; ++i) { VoV[i].resize(3); // ...
0
votes
1answer
145 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 ...
2
votes
2answers
163 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 ...
1
vote
2answers
2k views

How to create Multidimensional array?

I want to create multidimensional array which has levels, groups and items.
1
vote
1answer
1k 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 = ...
0
votes
1answer
1k 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 = ...
1
vote
3answers
2k 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 => ...
0
votes
2answers
2k 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
284 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] ...
2
votes
2answers
382 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 ...
1
vote
2answers
552 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 ...
0
votes
1answer
275 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
987 views

PHP Array Intersection

Maybe someone can help me find the array intersection of a multidemsional array like this one: [attributes] => Array ( [Color] => Array ...
1
vote
2answers
352 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
1answer
2k 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
169 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 ...
1
vote
2answers
1k 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 ...
1
vote
3answers
1k 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 ...
20
votes
5answers
8k 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, ...
3
votes
6answers
5k 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
205 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 ...
0
votes
2answers
5k 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), ...
6
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 ...

1 2