for (i = 0; i < length; i++)
{
for (j = 0; j < width; j++)
{
for (k = 0; k < height; k++)
{
interpolated_1D[i* j *height + k] = interpolated_input[j][k] ;
}
}
}
Doesn't seem to work,,, What am I doing wrong... Everything is allocated fine. No seg faults.
thankls in advance
joe