Skip to content

Commit

Permalink
test use corrected=true
Browse files Browse the repository at this point in the history
  • Loading branch information
navidcy committed Jan 11, 2023
1 parent 71fb757 commit 22c54d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test_transformations.jl
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ using Statistics
sliced_raw_observations = reshape(sliced_raw_observations, (ny * nz, 1))

# normalize
μ, σ = mean(sliced_raw_observations), sqrt(cov(sliced_raw_observations; corrected=false))
μ, σ = mean(sliced_raw_observations), sqrt(cov(sliced_raw_observations; corrected=true))
@. sliced_raw_observations = (sliced_raw_observations - μ) / σ

@test parent(observation_map(map, observations)) parent(sliced_raw_observations)
Expand Down

0 comments on commit 22c54d5

Please sign in to comment.