Hi,
kspaceLineRecon does not run in matlab 2012. I have fixed that problem. For more details see my other post which is mispelt as 'kspacePlaneRecon in matlab r1202b'.
Here are the changes I have made to kspaceLineRecon and example_pr_2D_FFT_line_sensor.
kspaceLineRecon
Replace line 112 with
interp_method = 'nearest';
Line 190 replace with
F=griddedInterpolant(w,kgrid.ky, p,interp_method);
p=F( w_new,kgrid.ky);
example_pr_2D_FFT_line_sensor_v2
replace line 85 with
F=griddedInterpolant( kgrid_recon.x - min(kgrid_recon.x(:)),kgrid_recon.y, p_xy);
p_xy_rs = F( kgrid.x - min(kgrid.x(:)),kgrid.y);
I hope this helps.
Cheers,
Luke