Kick off clt

This commit is contained in:
Grant Sanderson 2023-01-19 11:36:03 -08:00
parent c8a70f8493
commit c8a5d8e1d1

16
_2023/clt/main.py Normal file
View file

@ -0,0 +1,16 @@
from manim_imports_ext import *
from _2022.convolutions.continuous import *
class GaussConvolutions(Convolutions):
conv_y_stretch_factor = 1.0
def construct(self):
super().construct()
def f(self, x):
return np.exp(-x**2)
def g(self, x):
return np.exp(-x**2)