export interface CreateStepArrayOptions { /** * start value of range * @default 0 */ from?: number; /** * step value between points * @default 1 */ step?: number; /** * number of points in range * @default 1000 */ length?: number; } /** * Create an array with numbers starting from "from" with step "step" of length "length". * @param options - options * @returns - array of distributed numbers with step "step" from "from" */ export declare function createStepArray(options?: CreateStepArrayOptions): Float64Array; //# sourceMappingURL=createStepArray.d.ts.map