Skip to content

Instantly share code, notes, and snippets.

@Joelfranklin96
Created May 27, 2020 00:29
Show Gist options
  • Select an option

  • Save Joelfranklin96/9e6e8e89858efdd17bc93717abcf77a6 to your computer and use it in GitHub Desktop.

Select an option

Save Joelfranklin96/9e6e8e89858efdd17bc93717abcf77a6 to your computer and use it in GitHub Desktop.
defining an object of guassian class
# Defining an object of guassian class with 'mean' = 3 and 'standard deviation' = 5
guassian_one = guassian(3,5)
# Prints the mean and standard deviation
print(guassian_one.mean)
print(guassian_one.stdev)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment