Hi all,
I'm new to this field and I was going through some examples when I faced a problem.
In the example "2D FFT Reconstruction For A Line Sensor Example" I was trying to make the binary line sensor using the following commands:
% define a binary line sensor
sensor.mask = zeros(Nx, Ny);
sensor.mask(1, :) = 1;
but when I do so, MATLAB doesn't use the sensor in the right way when using "kspaceFirstOrder2D". When I for example use the following line:
sensor.mask(Nx/2, :) = 1;
it works. Why does MATLAB not recognize the first mask? I just get a white screen for the Pressure data.
Thanks in advance!
Greetz, Femke