Phase Correction
PhaseCorrection
allows you to correct the phase.
use autd3::prelude::*;
fn main() {
let _ =
PhaseCorrection::new(|_dev| |_tr| Phase::ZERO);
}
#include<chrono>
#include<autd3.hpp>
#include<autd3/link/nop.hpp>
int main() {
using namespace autd3;
PhaseCorrection([](const auto&) {
return [](const auto&) { return Phase::zero(); };
});
return 0; }
using AUTD3Sharp;
using AUTD3Sharp.Utils;
new PhaseCorrection(_dev => _tr => Phase.Zero);
from pyautd3 import Phase, PhaseCorrection
PhaseCorrection(lambda _dev: lambda _tr: Phase.ZERO)
The constructor argument for PhaseCorrection
is Fn(&Device) -> Fn(&Transducer) -> Phase
, which specifies the phase value for each transducer to be added to the values of Gain
, FociSTM
, and GainSTM
.