mingo
Version:
MongoDB query language for in-memory objects
10 lines (8 loc) • 322 B
TypeScript
import { Any, AnyObject, Options } from "../../../types";
/**
* Returns the result of the sigmoid function (the integration of the normal distribution with standard deviation 1).
*/
export declare const $sigmoid: (obj: AnyObject, expr: string | {
input: Any;
onNull: Any;
}, options: Options) => number | null;