-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathweibull.js
More file actions
191 lines (170 loc) · 5.04 KB
/
Copy pathweibull.js
File metadata and controls
191 lines (170 loc) · 5.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
// @flow
/**
* Weibull distribution
* This is continuous distribution
* https://en.wikipedia.org/wiki/Weibull_distribution
* @param k <number> - shape parameter , k > 0
* @param lambda <number> - scale parameter, lambda > 0
* @returns Weibull distributed value
* Created by Alexey S. Kiselev
*/
import type { MethodError, RandomArray } from '../types';
import type { IDistribution } from '../interfaces';
import prng from '../prng/prngProxy';
const Utils = require('../utils/utils');
class Weibull implements IDistribution {
k: number;
lambda: number;
gamma: Function;
constructor(k: number, lambda: number): void {
this.k = Number(k);
this.lambda = Number(lambda);
this.gamma = Utils.gamma;
}
/**
* Generates a random number
* @returns a Weibull distributed number
*/
random(): number {
return this._random(prng.random());
}
/**
* Generates next seeded random number
* @returns {number}
*/
next(): number {
return this._random(prng.next());
}
/**
* For simplicity
* @param {number} u
* @private
*/
_random(u: number): number {
return this.lambda * Math.pow(-Math.log(1 - u), 1 / this.k);
}
/**
* Generates Weibull distributed numbers
* @param n: number - Number of elements in resulting array, n > 0
* @returns Array<number> - Weibull distributed numbers
*/
distribution(n: number): RandomArray {
let weibullArray: RandomArray = [],
random: RandomArray = (prng.random(n): any);
for(let i: number = 0; i < n; i += 1){
weibullArray[i] = this._random(random[i]);
}
return weibullArray;
}
/**
* Error handling
* @returns {boolean}
*/
isError(): MethodError {
if(!this.k || !this.lambda) {
return {error: 'Weibull distribution: you should point "k", "lambda" numerical values'};
}
if(this.k <= 0) {
return {error: 'Weibull distribution: parameters "k" must greater then zero'};
}
if(this.lambda <= 0) {
return {error: 'Weibull distribution: parameters "lambda" must be greater then zero'};
}
return { error: false };
}
/**
* Refresh method
* @param newK: number - new parameter "k"
* @param newLambda: number - new parameter "lambda"
* This method does not return values
*/
refresh(newK: number, newLambda: number): void {
this.k = Number(newK);
this.lambda = Number(newLambda);
}
/**
* Class .toString method
* @returns {string}
*/
toString(): string {
let info = [
'Weibull Distribution',
`Usage: unirand.weibull(${this.k}, ${this.lambda}).random()`
];
return info.join('\n');
}
/**
* Mean value
* Information only
* For calculating real mean value use analyzer
*/
get mean(): number {
return this.lambda * this.gamma(1 + 1 / this.k);
}
/**
* Median value
* Information only
* For calculating real median value use analyzer
*/
get median(): number {
return this.lambda * Math.pow(Math.log(2), 1 / this.k);
}
/**
* Mode value - value, which appears most often
* Information only
* For calculating real mode value use analyzer
*/
get mode(): number {
if(this.k > 1) {
return this.lambda * Math.pow((this.k - 1) / this.k, 1 / this.k);
} else {
return 0;
}
}
/**
* Variance value
* Information only
* For calculating real variance value use analyzer
*/
get variance(): number {
return Math.pow(this.lambda, 2) * (this.gamma(1 + 2 / this.k) - Math.pow(this.gamma(1 + 1 / this.k), 2));
}
/**
* Entropy value
* Information only
* For calculating real entropy value use analyzer
*/
get entropy(): number {
return 0.5772156649015328606065121 * (1 - 1 / this.k) + Math.log(this.lambda / this.k) + 1;
}
/**
* Skewness value
* Information only
*/
get skewness(): number {
return (this.gamma(1 + 3 / this.k) * Math.pow(this.lambda, 3) - 3 * this.mean * this.variance - Math.pow(this.mean, 3)) / Math.pow(this.variance, 1.5);
}
/**
* Kurtosis value
* Information only
*/
get kurtosis(): number {
return -3 + (Math.pow(this.lambda, 4) * this.gamma(1 + 4 / this.k) - 4 * this.skewness * Math.pow(this.variance, 1.5) * this.mean - 6 * Math.pow(this.mean, 2) * this.variance - Math.pow(this.mean, 4)) / Math.pow(this.variance, 2);
}
/**
* All parameters of distribution in one object
* Information only
*/
get parameters(): {} {
return {
mean: this.mean,
median: this.median,
mode: this.mode,
variance: this.variance,
entropy: this.entropy,
skewness: this.skewness,
kurtosis: this.kurtosis
};
}
}
module.exports = Weibull;