mirror of
https://github.com/3b1b/manim.git
synced 2025-08-05 16:49:03 +00:00
Start gauss
This commit is contained in:
parent
afed6902c8
commit
ecca09be72
1 changed files with 24 additions and 0 deletions
24
active_projects/eola2/gauss.py
Normal file
24
active_projects/eola2/gauss.py
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
from big_ol_pile_of_manim_imports import *
|
||||||
|
|
||||||
|
|
||||||
|
class ShowRowReduction(Scene):
|
||||||
|
CONFIG = {
|
||||||
|
"matrix": [
|
||||||
|
[2, -1, -1],
|
||||||
|
[0, 3, -4],
|
||||||
|
[-3, 2, 1],
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
|
def construct(self):
|
||||||
|
pass
|
||||||
|
|
||||||
|
def initialize_terms(self):
|
||||||
|
# Create Integer mobjects, and arrange in appropriate grid
|
||||||
|
pass
|
||||||
|
|
||||||
|
def apply_row_rescaling(self, row_index, scale_factor):
|
||||||
|
pass
|
||||||
|
|
||||||
|
def add_row_multiple_to_row(self, row1_index, row2_index, scale_factor):
|
||||||
|
pass
|
Loading…
Add table
Reference in a new issue