Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

Is this line code correct?

I

I have a Mat object and a bidimensional array. I need to multiply them and have a new Mat object. I had to realize imf=imf.*filt in Matlab

for(m=0;m<rows;m++){
  for(n=0;n<cols;n++){

    imfft= imfft*filter[m][n];

   }
 }