I'm getting an error in runtime when I run my code in visual c++ 2010.
void dct2(){
float** G = new float*[len];
for(int u = 0; u < len; u++){
G[u] = new float[len];
for(int v = 0; v < len; v++){
G[u][v] = 0;
for(int x = 0; x < len; x++){
for(int y = 0; y < len; y++){
G[u][v] += a(u) * a(v) * (float)mat[x][y] * cos((PI / 8) * u * (x + 0.5)) * cos((PI / 8) * v * (y + 0.5));
}
}
}
}
doublecpy(G);
}
void doublecpy(float** d){
for(int i = 0; i < len; i++){
for(int j = 0; j < len; j++){
if(d[i][j] >= 0)
mat[i][j] = (int)(d[i][j] + 0.5);
else
mat[i][j] = (int)(d[i][j] - 0.5);
}
}
for(int i = 0; i < len; i++)
delete[] d[i];
delete[] d;
}
the error comes in the line: delete[] d[i]; please tell me if there's anything wrong with this piece of code or any advice.
I started converting all arrays to std::vector and in the midway i ran the code. That didn't solve my problem but i found the cause of the error. it was in this function:
The mistake is very visible, i corrected it:
Although this is very weird. I expected to receive an "array index out of bound" or "segmentation fault" when running the wrong code in the line: mat[i][j] = arr[i][j];
Anyways thank you all for your help.