Skip to content

Dev v12.3

Raquel Guerra requested to merge dev_V12.3 into master

Summary

Alters the argument position of the function rec_frenel.

Changes

The function header is changed from:

rec_fresnel(hol, pitch, wlen, rec_dist, zero_pad, direction, ref_wave_rad, isLast)

To:

rec_fresnel(hol, pitch, wlen, rec_dist, zero_pad, direction, isLast, ref_wave_rad)

Motivation

With this order, the function can simply be called as is on num_rec.m without raising the issue described in issue #8 (closed).

Merge request reports