( vals, fmin=None, fmax=None )
| 17 | return pmima_new |
| 18 | |
| 19 | def getMinMax( vals, fmin=None, fmax=None ): |
| 20 | funcmin,funcmax = ngs.Vector(vals, copy=False).MinMax(True) |
| 21 | if fmin is not None: |
| 22 | funcmin = min(funcmin, fmin) |
| 23 | if fmax is not None: |
| 24 | funcmax = max(funcmax, fmax) |
| 25 | return funcmin, funcmax |
| 26 | |
| 27 | |
| 28 | def _make_trig(N, x0=0, y0=0, dx=1, dy=1): |
no test coverage detected