Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
rmdocherty committed Jul 30, 2024
1 parent a7cf40c commit dbbc2f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion representativity/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -699,7 +699,7 @@ def get_std_model(dim: int, n_voxels: int) -> float:

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


Expand Down

0 comments on commit dbbc2f9

Please sign in to comment.