Multidimensional-arrays can be described as "arrays of arrays". Multidimensional-arrays are often used to put values in a table format (e.g. rows and columns).
1
vote
2answers
21 views
How can I get the keys from a dynamic multidimensional array, in PHP?
How could I get the keys from a dynamic multidimensional arrays those I randomized them using Shuffle function?
Assume that I have this script:
function customShuffle(array &$array) {
...
0
votes
3answers
47 views
java two-dimensional array, how do I remove selected rows
I really new to java and I've Googled this in every possible phrase i know how.
So I have a table made of 36 rows and 12 columns, I've been trying to write a method that will delete the a row when ...
0
votes
1answer
26 views
Store multidimensional array from JQuery Dropdown checklist in database in string form using loop
I want to store an array of checklist into a string in a database. Below this is the code in the interface which display a list of room with a dropdown checklist for each room.
while($rows = ...
0
votes
2answers
50 views
C++ how to display multidimentional array in OO design
Hi I'm writing a simple version of Pacman with OO design in C++. I have problem displaying the content of a 2D array. The array constains a bunch of symbols, which represent the wall of the map/maze. ...
0
votes
1answer
62 views
calling PHP multi dimensional arrays outside of foreach loop
I have an app that records months and years by one CSV entry, i.e. db column named answer1 is jan,2008 and column answer2 is feb,2013. I want to use a specific month (jan) in html but it only gives ...
4
votes
5answers
147 views
Two- and one-dimensional arrays equivalence in C++
It is known that two- and one-dimensional arrays can be used equivalently, by simple coordinate conversion. Is such equivalence guaranteed by the C++ standard, or maybe it's the most convenient way of ...
-7
votes
1answer
52 views
comparison of two dimensional array to a one dimension array
I am stuck in this case,
i have to compare a row of a two dimensional array to a one dimensional array. both arrays have characters like + and - and D. to be usable both arrays (the row and the ...
0
votes
3answers
20 views
how to merge this array php
This is my first array var_dump
array(1) {
[0]=>
array(55) {
["Primary Maths"]=>
NULL
["Primary Environment"]=>
NULL
["Primary English"]=>
NULL
["Primary ...
1
vote
0answers
32 views
Fast picturebox display in C#
is any way to load and display faster 100 (10x10) pictureboxes? All images are sized 40x40 pixels (5KB). I think there is better way than in my code but i'm too big newbie right now.
PictureBox[,] ...
4
votes
1answer
38 views
R, select sequence of sub matrix from a high dimensional array
A is a 4 dimensional array with dim 100*100*100*100. I want to select 10000 sub matrix from A's last two dimensions. B and C are vectors of length 10000. They are selection criteria. B specifies the ...
1
vote
2answers
36 views
Merging two n-dimensional arrays
I have two n-dimensional arrays which I would like to merge. I have already reviewed this question, however, it is only good for merging two dimensional arrays. I am trying to accomplish the same ...
0
votes
2answers
29 views
How to implement prototype function with 2 dimensional array in javascript?
I need to implement DataTable struct ,that is in c#, in javascript.
For example
function Servers(name)
{
this.Name = name;
this.Columns = new Array(5);
var rows = new Array(3);
...
0
votes
3answers
38 views
Number of columns in 2d array declaration
I want to read a text file and insert it into a 2d array. Here is my code.
List<String> list2 = new ArrayList<String>();
String thisLine = null;
while ((thisLine ...
0
votes
1answer
26 views
Accessing JSON data from multidemensional array
I'm having a small problem while pulling tide data from the wunderground api. When I use the code below to pull the time of day for low tide I get an accurate answer one day, but a wrong answer the ...
0
votes
0answers
26 views
How To Assign a Linear System of Equation Answers to An Array
I have a solution list as below from solving a linear equation system:
w[2, 2] -> 0.0000183294,
w[2, 3] -> 0.0000296603,
w[2, 4] -> 0.0000233449,
w[3, 2] -> 0.0000230831,
When I call, ...
0
votes
2answers
47 views
Create a table using foreach()
I have following PHP code contain 2 foreachs
echo "<table class='table table-bordered'>";
foreach($resultOld as $key=>$value)
{
foreach ($value as $key1 => $subjects) {
...
0
votes
1answer
27 views
Remove parts of strings from each string inside an array
Primary_MathsJAN
Primary_MathsFEB
Primary_MathsMAR
Primary_MathsAPR
Primary_MathsMAY
Primary_MathsJUNE
Primary_MathsJULY
Primary_MathsAUG
...
0
votes
1answer
11 views
xcode - how do I remove an item from an array within an array?
I wish to remove an item from in an array that is nested in another array but try as I might I can't get the code to work.
This is what I have in my code:
NSArray *array1 =[[NSArray alloc] ...
2
votes
5answers
92 views
Perl: Create a hash in which the key is an array, and the value is an array of arrays?
I'm trying to create a hash in which keys are contained in an array and values in an array of an array:
my @keys = (1,2,3,4,5);
my @value1 = (a,b,c,d,e);
my @value2 = (f,g,h,i,j);
my @value3 = ...
0
votes
1answer
55 views
Multi-dimensional arrays: Variable length row?
It is possible to do variable length columns such as:
private int k[][] = new int[3][];
for(int i = 0; i < k.length; i++) {
k[i] = new int[i+1];
}
I was wondering if it was possible to do ...
-1
votes
1answer
28 views
Pushing value into a multidimensional array ( array limit is not known)
I have surfed the problem but couldn't get any possible solution ..
Let's say i have a var like this
var data = [
{
'a':10,
'b':20,
'c':30
...
0
votes
5answers
71 views
How can I transform a List of List (multidimensional List) to an Array of Array(multidimensional Array)?
I have written this code, but at run time I have this error:
[Ljava.lang.Object; cannot be cast to [[Ljava.lang.String;
please help me, thanks!!!
public java.util.List<String> ...
-1
votes
2answers
88 views
Recursive call instead of multiple for loop calls C++ [closed]
On the Following example with 5 loops I am able to obtain each individual index to access into multi dimensional array. Is there any way for dynamic systems if I don't know the dimension of the array, ...
0
votes
2answers
100 views
Trouble Looping Through an Array Where Index 0 is a Second Dimension Array
I've created an object in my code that represents a medical patient's chart. Each chart corresponds to one patient. Within each chart, a patient can have many visits, or "Encounters". Within each ...
1
vote
7answers
63 views
Removing all elements of a column in a two-dimensional array
I have this array:
arr = [["a","b","c"],[2,3,5],[3,6,8],[1,3,1]]
which is representing a prawn-table containing columns "a", "b", and "c".
How do I remove the entire column "c" with all its ...
0
votes
0answers
14 views
Redim multidimensional array in Class Module
I have a private array in a class module. I figured out a rather unorthodox way to redim this array via a property Let in a class Module:
This can be used when the population of array's initially is ...
2
votes
2answers
69 views
variadic multidimensional array
Could I call a multidimensional array like
func(0,0,0); //=> if I know it's dimension on the run time.
func(0,0,0,0,0,0,0,0,0,0,0); //=> if I know it's dimension on the run time.
through ...
0
votes
1answer
18 views
XCODE TableView with multiple sections and delegate datasource from array of arrays - can't delete row without error?
I have a TableView with multiple sections that's got a delegate Data Source which links to an array of arrays. Each array within the array of arrays is it's own Table View Section. I have it loading ...
1
vote
3answers
32 views
PHP multidimensional array key collapse
I'd like to collapse a multidimensional array so that
$arr = array(
'first' => array(
'second' => array(
0 => 'foo',
1 => 'bar'
)
)
);
...
-1
votes
1answer
71 views
Sudoku Solver algorithm for int[,]
Good day to all,
I've been working on a C# Sudoku Solver application but I sincerely underestimated the difficulty of the algorithms to solve a sudoku. I've been searching the web for possible ...
-3
votes
1answer
50 views
PHP 5.4.4 bug with return of assoc array [closed]
I have upgraded to PHP 5.4.4 on my debian server and I have very strange problem.
I have the function:
private function getPossibleFacets(){
return array(
'location' => array(
...
-4
votes
2answers
66 views
Please Help me about PHP Array [closed]
How can I make :
[0] => Array
(
[main] => 1440:480
[thumb] => 144:48
)
[1] => Array
(
[main] => 1440x480
[thumb] => 144x48
)
To be ...
3
votes
2answers
54 views
How to crop subsection of 2D array?
I have a 2D array declared as new byte[w, h]. I want to crop out a sub-section of this array given coordinates (x1,y1)-(x2,y2). What's the quickest way to do this? Are there any methods for "slicing" ...
1
vote
1answer
47 views
Sorting multi-dimensional associative array in PHP
I have a PHP array that looks like this:
array (size=1)
'Marriot' =>
array (size=7)
0 => string 'doc5.txt' (length=8)
1 => string 'test.txt' (length=8)
2 => ...
0
votes
2answers
46 views
Java Null Pointer Exception in multi dimensional array
Alrighty, First post here so yell at me if I'm doing something wrong but I have the following code, the attempt is to make a zone builder kind of deal for one of those old school circle mud's. ...
0
votes
1answer
16 views
how to passing post variable values into array?
i have a code which is not working properly i want to when user's select country from drop down select list? After form is submitted value should be store into courier array?
For Example
if user ...
-2
votes
0answers
45 views
Hello I have a related to one of your answer. Thank your for your time [duplicate]
Hello I have a question related to one of your answer.
In this code it's your original code and i didn't modify it.
When I call: a7[0][1][100];
I am able to obtain the first index '0' in the ...
0
votes
1answer
20 views
Preg_match Empty Strings
So, I have to read a text file and get certain fields like name*: xxxxx, and save the xxx in a new file.. I've been using Regex to get the xxxx and save them in the text file and its working well, the ...
5
votes
2answers
176 views
Operator[] Overloading in MultiDimensional Arrays c++
When I call: a7[0][1][100];
I am able to obtain the first index '0' in the operator[] but as index I won't able to obtain other index values 1 and 100 as recursively. How could I able to use ...
1
vote
2answers
53 views
2D arrays passed through functions in c
I'm having a problem with my program. I need my program to read from a text file, the first consists of the dimensions of the 2d array the rest is the contents of the array. I have coded the readWord ...
1
vote
3answers
46 views
How to save an entire array in a slot of a multidimensional array?
Is there any way to do the following?
int[,] multiArray = new int[5,5];
multiArray[0] = {0, 1, 3, 4, 5};
1
vote
2answers
42 views
Get the biggest value from a JavaScript multidimensional-array
I have the following variable:
response = "['2013-04-20', 10568]", "['2013-04-21', 4566]", "['2013-04-22', 14228]", "['2013-04-23', 5056]", "['2013-04-24', 25837]", "['2013-04-25', 39723]", ...
2
votes
2answers
43 views
Iterating two arrays, without nditer, in numpy?
Consider a specification of numpy arrays, typical for specifying matplotlib plotting data:
t = np.arange(0.0,1.5,0.25)
s = np.sin(2*np.pi*t)
Basically, this stores the x coordinates of our (x,y) ...
0
votes
0answers
19 views
convert Array of paths/directories to flare.json-like json
I have an array of nested Directories with there sizes. I need to get them into a json-structure like this to display a 3d.js sunburst-chart. [Or any Object, Nested Array i can work with]
My approach ...
0
votes
1answer
19 views
C++ What is the best data structure for a two dimensional array of object “piles”?
The size of the grid will be known at the start (but will be different each time the program starts). However, the DEPTH of each cell is not a mere value, but rather a population of objects that will ...
1
vote
2answers
71 views
Increasing speed of float calculations at the cost of accuracy? [closed]
I have a program that contains large arrays of float values, and performs a lot of calculations based on them, these values are later scaled to fall between 0 and 255 to act as pixel values. Is ...
0
votes
4answers
27 views
Access Multidimensional Array element with out knowing parent elements
I have function that returns the following multidimensional array. I don't have control of how the array is formed. Im trying to access the 'Result' elements. This issue is, the name of the parent ...
0
votes
1answer
44 views
Why is my javascript array empty? [closed]
When I try to alert an array I store Parse query results in, the array is empty. I've tried moving the variables and the alert to different scopes but nothing seems to work. Is the problem with my for ...
0
votes
0answers
30 views
Javascript: Turn an two dimensional array [duplicate]
How do you turn an two dimensional array? In my case I have an array that contains the score a player has on a specific round of the game.
I have
var results = new Array();
for(var i = ...
5
votes
2answers
45 views
JavaScript - control two-dimensional dynamic array
i want to init a two-dimensional dynamic array in javascript, it don't limit element (maybe) like
var dynamic = new Array ();
dynamic[] = new Array ();
after i want to add value to special array ...



