The 3d-array tag has no wiki summary.
9
votes
8answers
415 views
New to programming, don't get 2D/3D arrays
Hey everyone, I'm basically new to programming. I've decided to try and get started with C (not C++ or C#) and so far I've been doing pretty well. I managed to get far as two-dimensional arrays before ...
1
vote
1answer
59 views
malloc'ed 3d array generates Data Access Violation
I have a malloc'ed 3d array of doubles in C that is generating a Data Access Violation error when accessed via indexes.
The allocation function: (Simplified version not checking for nulls or freeing ...
1
vote
2answers
170 views
How to use 3-D array in OpenCL kernel?
I am new to OpenCL. I have worked with OpenCL kernel with 1-D data. But when I tried to pass a 3-D pointer, it fails to build the kernel. To be specific I'm getting CL_BUILD_PROGRAM_FAILURE. Here's ...
1
vote
5answers
2k views
Dynamic memory allocation for 3D array [closed]
Possible Duplicates:
Malloc a 3-Dimensional array in C?
dynamic allocation/deallocation of 2D & 3D arrays
How can i allocate 3D arrays using malloc?
0
votes
1answer
16 views
VFP: 3d arrays?
The following doesn't work... Can you do 3d arrays in foxpro?
DIMENSION sqlresults[10]
select list_code, count(donor) as ndine FROM cGift group by list_code INTO ARRAY sqlresults[1]
edit:
ah, a ...
0
votes
1answer
41 views
Jagged 3D array creation in C
I am trying to create a dynamic 3D array using C.
the idea is to create a 3D array which looks like something like this
A[0][128][128]
A[1][64][64]
A[2][32][32]
A[3][16][16]
A[4][8][8]
.....
...
0
votes
1answer
48 views
Sorting array in 3 dim array in PHP
Okay, im having a really hard time and tried many solutions but i cant get it to work. Gave up some hours now on this, and still nothing.
I have an array that looks like this: ...
0
votes
1answer
48 views
Aggregate 3rd dimension of a 3d array for the subscripts of the first dimension
I have a 3 Dimensional array Val 4xmx2 dimension. (m can be variable)
Val{1} = [1, 280; 2, 281; 3, 282; 4, 283; 5, 285];
Val{2} = [2, 179; 3, 180; 4, 181; 5, 182];
Val{3} = [2, 315; 4, 322; 5, 325];
...
0
votes
1answer
175 views
How to serialize a 3D array with boost?
Okay, I recently switched to boost and I partitialy understand serializing simple objects or simple classes (the boost tutorial confuses me), but how can I serialize a 3D array which contains class ...
0
votes
3answers
191 views
3d array c/c++ initialization/conversion
float sampleGrid1[5][5][5] =
{
{
{0.0, 0.0, 0.0, 0.0, 0.0},
{0.0, 0.0, 0.0, 0.0, 0.0},
{0.0, 0.0, 0.0, 0.0, 0.0},
{0.0, 0.0, 0.0, 0.0, 0.0},
{0.0, 0.0, 0.0, ...
0
votes
1answer
191 views
What is and How is length of a 2D,3D array calucated?
I am slightly confused with concept... When printed a length of a 2D array of[20][20]. Answer was 120... But unable to figure out... How was it Calculated?