Sponsoring The Perl Toolchain Summit 2025: Help make this important event another success Learn more

NAME

Lab::Moose::Sweep::Step::Repeat - Repeat something (e.g. some sweep) N times

VERSION

version 3.920

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) 2024 by the Lab::Measurement team; in detail:

Copyright 2018 Andreas K. Huettel, Simon Reinhardt

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.