UNPKG

scalar-autograd

Version:

Scalar-based reverse-mode automatic differentiation in TypeScript.

10 lines (9 loc) 269 B
import { Value } from './Value'; export declare class ValueTrig { static sin(x: Value): Value; static cos(x: Value): Value; static tan(x: Value): Value; static asin(x: Value): Value; static acos(x: Value): Value; static atan(x: Value): Value; }