(data, min=None, max=None)
| 438 | |
| 439 | |
| 440 | def clip(data, min=None, max=None): |
| 441 | xp = get_array_namespace(data) |
| 442 | return xp.clip(data, min, max) |
| 443 | |
| 444 | |
| 445 | def concatenate(arrays, axis=0): |
nothing calls this directly
no test coverage detected
searching dependent graphs…