Created
May 27, 2020 00:29
-
-
Save Joelfranklin96/9e6e8e89858efdd17bc93717abcf77a6 to your computer and use it in GitHub Desktop.
defining an object of guassian class
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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