Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

lib-r-math.js

Package Overview
Dependencies
Maintainers
1
Versions
105
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

lib-r-math.js - npm Package Compare versions

Comparing version 1.0.71 to 1.0.72

5

dist/src/lib/beta/index.d.ts
import { beta } from './beta';
import { lbeta } from './lbeta';
import { IRNGNormal } from '../rng/normal';
import { numVector } from '../types';
export declare const special: {

@@ -10,6 +9,6 @@ beta: typeof beta;

export declare function Beta(rng?: IRNGNormal): Readonly<{
dbeta: (x: numVector, shape1: numVector, shape2: numVector, ncp?: number | number[] | undefined, log?: boolean | boolean[] | undefined) => numVector;
dbeta: (x: number | number[], shape1: number | number[], shape2: number | number[], ncp?: number | number[] | undefined, log?: boolean | boolean[] | undefined) => number | number[];
pbeta: <T>(q: T, shape1: number, shape2: number, ncp?: number | undefined, lowerTail?: boolean, logP?: boolean) => T;
qbeta: <T>(p: T, shape1: number, shape2: number, ncp?: number | undefined, lowerTail?: boolean, logP?: boolean) => T;
rbeta: (n: number, shape1: number, shape2: number, ncp?: number) => numVector;
rbeta: (n: number, shape1: number, shape2: number, ncp?: number) => number | number[];
}>;

@@ -41,3 +41,3 @@ export { Beta } from './beta';

}>;
import { any, arrayrify, flatten, isOdd, ISummary, map, multiplex, multiplexer, numberPrecision, selector, sum, summary, Welch_Satterthwaite } from './r-func';
import { any, arrayrify, flatten, isOdd, ISummary, multiplex, multiplexer, numberPrecision, selector, sum, summary, Welch_Satterthwaite } from './r-func';
export { ISummary };

@@ -50,3 +50,4 @@ export declare const R: {

isOdd: typeof isOdd;
map: typeof map;
map: (xx: {}) => (fn: (x: any, idx?: string | number | undefined) => any) => any;
each: (xx: {}) => (fn: (x: any, idx?: string | number | undefined) => any) => any;
mult: (...rest: any[]) => any;

@@ -53,0 +54,0 @@ multiplex: typeof multiplex;

@@ -12,5 +12,4 @@ export declare function isOdd(n: number): boolean;

export declare function multiplexer(...rest: (any | any[])[]): (fn: (...rest: any[]) => any) => any;
export declare function map<T>(xx: T): {
(fn: (x: any, idx?: number | string) => any): any | any[];
};
export declare const map: (xx: {}) => (fn: (x: any, idx?: string | number | undefined) => any) => any;
export declare const each: (xx: {}) => (fn: (x: any, idx?: string | number | undefined) => any) => any;
export declare function numberPrecision(prec?: number): (x: number | number[], ...rest: any[]) => number | number[];

@@ -17,0 +16,0 @@ export declare function any<T>(x: T[]): (fn: any) => boolean;

2

package.json

@@ -150,3 +150,3 @@ {

"types": "./dist/src/lib/index.d.ts",
"version": "1.0.71"
"version": "1.0.72"
}

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc