mirror of
https://github.com/3b1b/videos.git
synced 2025-08-05 16:48:47 +00:00
66 lines
1.8 KiB
Python
66 lines
1.8 KiB
Python
![]() |
from _2019.diffyq.part4.staging import *
|
||
|
from _2019.diffyq.part4.fourier_series_scenes import *
|
||
|
from _2019.diffyq.part4.pi_creature_scenes import *
|
||
|
from _2019.diffyq.part4.three_d_graphs import *
|
||
|
from _2019.diffyq.part4.temperature_scenes import *
|
||
|
from _2019.diffyq.part4.complex_functions import *
|
||
|
from _2019.diffyq.part4.long_fourier_scenes import *
|
||
|
|
||
|
from _2019.diffyq.part3.staging import *
|
||
|
|
||
|
OUTPUT_DIRECTORY = "diffyq/part4"
|
||
|
SCENES_IN_ORDER = [
|
||
|
ComplexFourierSeriesExample,
|
||
|
FourierOfFourier,
|
||
|
FourierOfFourierZoomedIn,
|
||
|
FourierOfFourier100xZoom,
|
||
|
FourierSeriesFormula,
|
||
|
RelationToOtherVideos,
|
||
|
WhyWouldYouCare,
|
||
|
ShowLinearity,
|
||
|
CombineSeveralSolutions,
|
||
|
FourierGainsImmortality,
|
||
|
SolveForWavesNothingElse,
|
||
|
CycleThroughManyLinearCombinations,
|
||
|
StepFunctionExample,
|
||
|
WhichWavesAreAvailable,
|
||
|
AlternateBoundaryConditions,
|
||
|
AskQuestionOfGraph,
|
||
|
CommentOnFouriersImmortality,
|
||
|
HangOnThere,
|
||
|
ShowInfiniteSum,
|
||
|
TechnicalNuances,
|
||
|
BreakDownStepFunction,
|
||
|
StepFunctionSolutionFormla,
|
||
|
# How to compute
|
||
|
FourierSeriesOfLineIllustration,
|
||
|
GeneralizeToComplexFunctions,
|
||
|
ClarifyInputAndOutput,
|
||
|
GraphForFlattenedPi,
|
||
|
PiFourierSeries,
|
||
|
RealValuedFunctionFourierSeries,
|
||
|
YouSaidThisWasEasier,
|
||
|
AskAboutComplexNotVector,
|
||
|
SimpleComplexExponentExample,
|
||
|
LooseWithLanguage,
|
||
|
DemonstrateAddingArrows,
|
||
|
TRangingFrom0To1,
|
||
|
LabelRotatingVectors,
|
||
|
IntegralTrick,
|
||
|
SwapIntegralAndSum,
|
||
|
FootnoteOnSwappingIntegralAndSum,
|
||
|
FormulaOutOfContext,
|
||
|
ShowRangeOfCnFormulas,
|
||
|
DescribeSVG,
|
||
|
# TODO
|
||
|
IncreaseOrderOfApproximation,
|
||
|
ShowStepFunctionIn2dView,
|
||
|
StepFunctionIntegral,
|
||
|
GeneralChallenge,
|
||
|
|
||
|
# Oldies
|
||
|
# FourierSeriesIllustraiton,
|
||
|
# FourierNameIntro,
|
||
|
# CircleAnimationOfF,
|
||
|
]
|