nalgebra/tests/core/variance.rs

11 lines
291 B
Rust
Raw Normal View History

2023-04-25 06:25:36 +08:00
use nalgebra::DVector;
2023-04-24 05:46:06 +08:00
#[test]
fn test_variance_new() {
let long_repeating_vector = DVector::repeat(10_000, 100000000.0);
assert_eq!(long_repeating_vector.variance(), 0.0);
let short_vec = DVector::from_vec(vec![1., 2., 3.]);
2023-04-25 06:25:36 +08:00
assert_eq!(short_vec.variance(), 2.0 / 3.0);
2023-04-24 05:46:06 +08:00
}