NAME

Lab::Moose::Sweep::Continuous::Time - Time sweep

VERSION

version 3.831

SYNOPSIS

use Lab::Moose;

my $sweep = sweep(
    type => 'Continuous::Time',
    interval => 0.5, # optional, default is 0 (no delay)
    duration => 60
);

# Multiple segments with different intervals
my $sweep = sweep(
    type => 'Continuous::Time',
    # 60s with 0.5s interval followed by 120s with 1s interval
    durations => [60, 120],
    intervals => [0.5, 1],
);

COPYRIGHT AND LICENSE

This software is copyright (c) 2022 by the Lab::Measurement team; in detail:

Copyright 2018       Simon Reinhardt
          2020       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.