ml-gsd
Version:
Global Spectral Deconvolution
16 lines • 493 B
TypeScript
import type { NumberArray } from 'cheminfo-types';
interface TryMatchOneIntervalWithMinDataOptions {
x: NumberArray;
lastK: number;
minData: number[];
yThreshold: number;
intervalWidth: number;
intervalCenter: number;
yData: NumberArray;
}
export declare function tryMatchOneIntervalWithMinData(options: TryMatchOneIntervalWithMinDataOptions): {
lastIndex: number;
possible: number;
};
export {};
//# sourceMappingURL=tryMatchOneIntervalWithMinData.d.ts.map