linspace

visualife.calc.math_utils.linspace(start, stop, **kwargs)

Return evenly spaced numbers over a specified interval.

Parameters:
  • start – the starting value of the sequence.
  • stop – the end value of the sequence, unless endpoint is set to False
  • kwargs – see below
Keyword Arguments:
 
  • endpoint (bool) – if False, the last element will not be included in the sequence
  • num (number) – the number of points
  • step (number) – size of spacing between samples