perturbationMagnitudes property

Future<List<List<num>>> perturbationMagnitudes

Returns the sequence of perturbation magnitudes.

Implementation

Future<List<List<num>>> get perturbationMagnitudes =>
    _perturbationMagnitudes().then<List<List<num>>>((pertubationMagnitudes) =>
        List<List<num>>.generate(pertubationMagnitudes.length,
            (i) => List<num>.of(pertubationMagnitudes[i])));