Hi, i am working on an assignment that requires me to use a two-dimensional double array with 400 values in the 1st dimension, and 10000 values for each of those elements.. So the problem is when I write functions to calculate the means and mean of the means, and i click compile and run, the program does a runtime error and stops working..
How do i output stuff with these huge arrays? I am required to output answers like mean of the means and std. deviations of the means, but how am i supposed to do that when the program refuses to work with these numbers..?
ok thanks, but how do i put two-dimensional dynamic array parameters in functions?
i know for regular arrays, it's double array[][size] in the parameter, but
i tried just putting double *array as the parameter, but i get a lot of errors..