summaryrefslogtreecommitdiff
path: root/FSF-2020/linear-algebra/linear-transformations/Gram Schmidt Orthonormalization Process/file1_introduction.py
diff options
context:
space:
mode:
authorArchit Sangal2020-07-09 02:59:49 +0530
committerArchit Sangal2020-07-09 02:59:49 +0530
commit350ccaf2453180475406256cc8d4c9bfe9db3880 (patch)
treea376e0be86831d1b654ac03a9dd274ad8681838b /FSF-2020/linear-algebra/linear-transformations/Gram Schmidt Orthonormalization Process/file1_introduction.py
parenta637d8b87fc86f058af30d8855870921b7267b50 (diff)
downloadFSF-mathematics-python-code-archive-350ccaf2453180475406256cc8d4c9bfe9db3880.tar.gz
FSF-mathematics-python-code-archive-350ccaf2453180475406256cc8d4c9bfe9db3880.tar.bz2
FSF-mathematics-python-code-archive-350ccaf2453180475406256cc8d4c9bfe9db3880.zip
updated folder name and README.md files
Diffstat (limited to 'FSF-2020/linear-algebra/linear-transformations/Gram Schmidt Orthonormalization Process/file1_introduction.py')
-rw-r--r--FSF-2020/linear-algebra/linear-transformations/Gram Schmidt Orthonormalization Process/file1_introduction.py33
1 files changed, 0 insertions, 33 deletions
diff --git a/FSF-2020/linear-algebra/linear-transformations/Gram Schmidt Orthonormalization Process/file1_introduction.py b/FSF-2020/linear-algebra/linear-transformations/Gram Schmidt Orthonormalization Process/file1_introduction.py
deleted file mode 100644
index ccd23c9..0000000
--- a/FSF-2020/linear-algebra/linear-transformations/Gram Schmidt Orthonormalization Process/file1_introduction.py
+++ /dev/null
@@ -1,33 +0,0 @@
-from manimlib.imports import *
-
-class Orthonormal(Scene):
- def construct(self):
- Centre = DOWN
- arrow_1 = Arrow(start = Centre+ORIGIN,end = Centre+1.414*(UP+RIGHT))
- arrow_2 = Arrow(start = Centre+ORIGIN,end = Centre+2*UP)
- arrow_1.scale(1.35)
- arrow_2.scale(1.35)
- text = TextMobject("This is a set of linearly independent vectors")
- text.scale(0.75)
- text.move_to(3*UP+3*LEFT)
- text.set_color(PURPLE_E)
- arrow_1.set_color(PURPLE_E)
- arrow_2.set_color(PURPLE_E)
- self.play(Write(text))
- self.play(ShowCreation(arrow_1), ShowCreation(arrow_2))
- self.wait(2)
- text1 = TextMobject("After we apply Gram-Schmidt Orthogonalization Process to set of linearly independent vectors")
- text1.scale(0.6)
- text1.move_to(3*UP+2*LEFT)
- text1.set_color(GREEN)
- arrow_a = Arrow(start = Centre+ORIGIN,end = Centre+0.707*(UP+RIGHT))
- arrow_a.set_color(GREEN)
- arrow_a.scale(2)
- self.play(Transform(text,text1))
- self.wait(2)
- self.play(Transform(arrow_1,arrow_a))
- arrow_b = Arrow(start = Centre+ORIGIN,end = Centre+0.707*(UP+LEFT))
- arrow_b.set_color(GREEN)
- arrow_b.scale(2)
- self.play(Transform(arrow_2,arrow_b))
- self.wait(2) \ No newline at end of file