Graphing of array in 3d.
| Newsgroups | gmane.comp.debugging.ddd.general |
|---|---|
| Message-ID | <OF407BB118.8FE5645F-ON8625707B.0064FDBC-8625707B.00652665@veritasdgc.com> |
Hi All,
Is it possible to do a 3D graph plot of an array if I pass the "graph
display" command the X and Y dimensions of my array.
int main () {
float* array;
array = new float[400];
int x=0;
for (int i=0; i<20; i++) {
for (int j=0; j<20; j++) {
array[x] = i + j;
}
}
}
Thanks,
--ernie