1
vote
2answers
76 views
Pass a multidimensional array as a parameter in Delphi
I'd like to pass a multi-dimensional array to a constructor like so:
constructor TMyClass.Create(MyParameter: array of array of Integer);
begin
LocalField := MyParameter;
end;
…
3
votes
3answers
53 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 co …
0
votes
4answers
163 views
initializing a const multidimensional array in c++
I'm currently working through some exercises in a c++ book, which uses text based games as its teaching tool. The exercise I am stuck on involves getting the pc to select a word fr …
0
votes
1answer
180 views
AS3 Object Filtering
Ok. so I'm working on an app that retrieves items from a db and builds a gallery. I've done this a ton of times, and it should be simple.
I'm running into problems, because in thi …
-2
votes
3answers
88 views
How do you Iterate a multidimesional array without knowing the number of dimensions and elements of the array being passed to you?
A SDK is returning me an array with multiple dimensions such as:
int[,,] theArray = new int[2,8,12];
I need to visit each element in the array and return the value and the p …
0
votes
6answers
188 views
Why use an Array of more than two dimensions?
I am having trouble wrapping my head around the concept of an array with more than two dimensions, why you would need one, and how you would use it.
For example, how would you go …
4
votes
7answers
3k 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 …
0
votes
1answer
32 views
TM1 API for LinqToEntities
IBM Cognos TM1 is a multidimensional database that my company thinks is the latest and greatest. I've been to the classes and, sure, it is nice for analysis. Of course the finance …
0
votes
1answer
86 views
cakePHP: How to create a form for a 2D/multidimentional table?
Hi,
I need to create a form in CakePHP to allow users enter data(numbers) into the cells shown on the table below. The input screen needs look like the table shown below. The …
0
votes
2answers
84 views
determining the distance between points in n-dimensions
Hey,
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 …
0
votes
0answers
54 views
SSAS 2008 Dimension Wizard and the Date Template
Hi!
Does anyone know how to use the Date Template with the BIDS 2008, SSAS Project, Dimension Wizard? I keep getting an error - rightly so, I suppose - "Dimension not generated be …
0
votes
2answers
72 views
Are textual fields ever allowed in fact tables?
Are there any cases where I can have a textual field such as a description in a fact table?
I currently have a fact table of meeting events (grain: row per meeting) with a number …
1
vote
4answers
463 views
Perl: Generating Arrays inside a Complex Hash
In the quest to make my data more accessible, I want to store my tabulated data in a complex hash. I am trying to grow a 'HoHoHoA' as the script loops over my data. As per the guid …
0
votes
1answer
72 views
Block user from moving anywhere
I have made a game which is nearly identical to Popcap's Atomica. (http://www.popcap.com/gamepopup.php?theGame=atomica)
It's almost finished, except for one important function; bl …
0
votes
3answers
99 views
How can I use a string to get a value from a multi dimensional array?
Say this is my string
$string = 'product[0][1][0]';
How could I use that string alone to actually get the value from an array as if I had used this:
echo $array['product'][0][1 …
