Computes tangent of values in `input`. :rtype: TensorList of tan(input). If input is an integer, the result will be float, otherwise the type is preserved.
(input)
| 149 | |
| 150 | |
| 151 | def tan(input) -> _DataNode: |
| 152 | """Computes tangent of values in `input`. |
| 153 | |
| 154 | :rtype: TensorList of tan(input). If input is an integer, the result will be float, |
| 155 | otherwise the type is preserved. |
| 156 | """ |
| 157 | return _arithm_op("tan", input) |
| 158 | |
| 159 | |
| 160 | def asin(input) -> _DataNode: |
no test coverage detected