(self, start, stop, num, type_as=None)
| 3088 | return tnp.std(a, axis=axis) |
| 3089 | |
| 3090 | def linspace(self, start, stop, num, type_as=None): |
| 3091 | if type_as is None: |
| 3092 | return tnp.linspace(start, stop, num) |
| 3093 | else: |
| 3094 | return tnp.linspace(start, stop, num, dtype=type_as.dtype) |
| 3095 | |
| 3096 | def meshgrid(self, a, b): |
| 3097 | return tnp.meshgrid(a, b) |