Chopping stuff up in Moser

This commit is contained in:
Grant Sanderson
2015-04-30 15:26:56 -07:00
parent 80f5c39b24
commit e230b48adb
8 changed files with 736 additions and 402 deletions

View File

@ -72,6 +72,9 @@ def there_and_back(t, inflection = 10.0):
def not_quite_there(t, proportion = 0.7):
return proportion*high_inflection_0_to_1(t)
def wiggle(t, wiggles = 2):
return there_and_back(t) * np.sin(wiggles*np.pi*t)
### Functional Functions ###
def composition(func_list):