UNPKG

psychart

Version:

View air conditions on a psychrometric chart

9 lines (8 loc) 265 B
/** * Represents a mathematical function `y = f(x)` */ export type f = (x: number) => number; /** * Find the solution (zero) of a function. */ export declare function zero(func: f, left: number, right: number, epsilon?: number, maxIterations?: number): number;