-
Notifications
You must be signed in to change notification settings - Fork 4
compute mstdev
kgryte edited this page May 12, 2015
·
1 revision
Computes a moving (sliding window) sample standard deviation over a numeric array
.
var data = [ 1, 5, 0, 10, 2 ];
var arr = compute.mstdev( data, 3 );
// returns [ ~2.6, 5, ~5.3 ]
- Utilities
- Array Creation
- Sorting and Reshaping Arrays
- Special Functions
- Arithmetic
- Relational Operations
- Logical Operations
- Trigonometry
- Geometry
- Sets
- Discrete Mathematics
- Linear Algebra
- Statistics