NAME
Lab::Moose::Sweep::Step::Repeat - Repeat something (e.g. some sweep) N times
VERSION
version 3.810
SYNOPSIS
# Repeat voltage sweep 10 times
my $repeat = sweep(
type => 'Step::Repeat',
count => 10
);
my $voltage_sweep = sweep(...);
my $meas = ...;
my $datafile = sweep_datafile(...);
$repeat->start(
slave => $voltage_sweep,
measurement => $meas,
datafile => $datafile
);
COPYRIGHT AND LICENSE
This software is copyright (c) 2022 by the Lab::Measurement team; in detail:
Copyright 2018 Andreas K. Huettel, Simon Reinhardt
2020 Andreas K. Huettel
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.