Skip to content

Commit dbbc2f9

Browse files
author
rmdocherty
committed
test
1 parent a7cf40c commit dbbc2f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

representativity/core.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -699,7 +699,7 @@ def get_std_model(dim: int, n_voxels: int) -> float:
699699

700700
def normal_dist(
701701
x: np.ndarray, mean: float | np.ndarray, std: float | np.ndarray
702-
) -> np.ndarray:
702+
) -> np.ndarray: #
703703
return (1.0 / (std * np.sqrt(2 * np.pi))) * np.exp(-0.5 * ((x - mean) / std) ** 2)
704704

705705

0 commit comments

Comments
 (0)