# 마우스 효과 팅커벨
본문 바로가기 메뉴 바로가기

벼랑끝 바이오 매드 컴퓨터 사이언티스트

프로필사진
  • 글쓰기
  • 관리
  • 태그
  • 방명록
  • RSS

벼랑끝 바이오 매드 컴퓨터 사이언티스트

검색하기 폼
  • 분류 전체보기 (151)
    • Background (63)
      • Biology (8)
      • Math (42)
      • Statistics (8)
      • English (5)
    • Computer (66)
      • 백준 풀이 (7)
      • 이게 왜 안되지? (23)
      • 코딩 개꿀팁 (21)
      • 3B1B 따라잡기 with ManimLibrary (15)
    • Paper (4)
      • Bioinformatics (2)
      • CS (2)
    • Daily (16)
      • review (6)
      • etc (10)
  • 방명록

Computer/3B1B 따라잡기 with ManimLibrary (15)
[3B1B따라잡기 with Manim!][1일 1마님] 7. 나만의 Def 만들어 사용하기 / ValueTracker / get_secant_slope_group

1일 1마님 시리즈는 예제 코드를 하루에 하나씩 따라하면서 마님 라이브러리 사용에 익숙해지기 위해 만든 시리즈입니다! 간단하게 코드 + 코드 리뷰 + 실행 결과만 작성합니다! # 나만의 fucntion 만들기 def get_horizontal_line2graph(axes, function, x, width, color): result = VGroup() line = DashedLine( start = axes.c2p(0, function.underlying_function(x)), end = axes.c2p(x, function.underlying_function(x)), stroke_width = width, stroke_color = color, ) dot = Dot().set_color(color)..

Computer/3B1B 따라잡기 with ManimLibrary 2023. 6. 5. 01:36
[3B1B따라잡기 with Manim!][1일 1마님] 7. Animation : GrowFromPoint / Transform / LaggedStart

1일 1마님 시리즈는 예제 코드를 하루에 하나씩 따라하면서 마님 라이브러리 사용에 익숙해지기 위해 만든 시리즈입니다! 간단하게 코드 + 코드 리뷰 + 실행 결과만 작성합니다! from manim import * class MoveToRectangle(Scene): def construct(self): plane = NumberPlane(x_range=[-5,5,1], x_length=8, y_range=[-4,4,1], y_length=6).add_coordinates() plane.shift(RIGHT * 2) vec1 = Line(start=plane.c2p(0, 0), end = plane.c2p(3, 2), stroke_color=YELLOW).add_tip(tip_width=0.2) vec1_n..

Computer/3B1B 따라잡기 with ManimLibrary 2023. 6. 2. 13:05
[3B1B따라잡기 with Manim!][1일 1마님] 6. LinearTransformationScene

1일 1마님 시리즈는 예제 코드를 하루에 하나씩 따라하면서 마님 라이브러리 사용에 익숙해지기 위해 만든 시리즈입니다! 간단하게 코드 + 코드 리뷰 + 실행 결과만 작성합니다! class LinearTransformation(LinearTransformationScene): # 1. For LinearTransformationScene, you need to do initiation first # This make the coordinates on the screen def __init__(self): LinearTransformationScene.__init__( self, show_coordinates=True, leave_ghost_vectors=True, show_basis_vectors=True ..

Computer/3B1B 따라잡기 with ManimLibrary 2023. 5. 31. 11:09
[3B1B따라잡기 with Manim!][1일 1마님] 5. VectorScene

1일 1마님 시리즈는 예제 코드를 하루에 하나씩 따라하면서 마님 라이브러리 사용에 익숙해지기 위해 만든 시리즈입니다! 간단하게 코드 + 코드 리뷰 + 실행 결과만 작성합니다! class Vectors(VectorScene): def construct(self): plane = self.add_plane(animate=True).add_coordinates() vector = self.add_vector([-3,-2], color=WHITE) basis = self.get_basis_vectors() self.add(basis) self.wait(2) T1 = Tex("vector to coords").next_to(vector, buff=0.1) self.play(Create(T1)) self.vecto..

Computer/3B1B 따라잡기 with ManimLibrary 2023. 5. 30. 18:12
[3B1B따라잡기 with Manim!][1일 1마님] 4. ValueTracker / PolarPlane / ParametricFunction / LaggedStart / set_value

1일 1마님 시리즈는 예제 코드를 하루에 하나씩 따라하면서 마님 라이브러리 사용에 익숙해지기 위해 만든 시리즈입니다! 간단하게 코드 + 코드 리뷰 + 실행 결과만 작성합니다! class Tute2(Scene): def construct(self): # 1. ValueTracker e = ValueTracker(0.01) # 2. PolarPlane plane = PolarPlane(radius_max=3).add_coordinates().shift(LEFT * 2) # radius_max는 int 단위로 입력 graph1 = always_redraw(lambda : ParametricFunction(lambda t : plane.polar_to_point(2*np.sin(3*t), t), t_range=..

Computer/3B1B 따라잡기 with ManimLibrary 2023. 5. 30. 01:13
[3B1B따라잡기 with Manim!][1일 1마님] 3. NumberPlane / get_area / get_riemann_rectangles / Line() / c2p

1일 1마님 시리즈는 예제 코드를 하루에 하나씩 따라하면서 마님 라이브러리 사용에 익숙해지기 위해 만든 시리즈입니다! 간단하게 코드 + 코드 리뷰 + 실행 결과만 작성합니다! class Graphing(Scene): def construct(self): my_plane = NumberPlane(x_range= [-6,6], x_length=5, y_range= [-8,8], y_length=6) my_plane.shift(LEFT * 2) my_function = my_plane.plot(lambda x : 0.1*(x-5)*x*(x+5), x_range=[-6,6], color=GREEN) area = my_plane.get_area(graph = my_function, x_range=[-5,5], c..

Computer/3B1B 따라잡기 with ManimLibrary 2023. 5. 29. 04:33
[3B1B따라잡기 with Manim!][1일 1마님] 2. Axes.plot

1일 1마님 시리즈는 마님 documentation에 존재하는 예제 코드를 하루에 하나씩 따라하면서 마님 라이브러리 사용에 익숙해지기 위해 만든 시리즈입니다! 많은 시간을 들이기엔 주인장도 대학원생인지라 부담이 돼서 1일 1마님 시리즈는 간단하게 코드 + 코드 리뷰 + 실행 결과만 작성합니다! class GraphingMovement(Scene): # Scene class 상속 def construct(self): # Axes class를 이용해서 좌표계 형성 # axis_config 옵션을 이용해서 다양한 옵션 설정 가능 axes = Axes(x_range=[0,5,1], y_range=[0,3,1], x_length=5, y_length=3, axis_config={"include_tip":True}..

Computer/3B1B 따라잡기 with ManimLibrary 2023. 5. 27. 17:41
[3B1B 따라잡기 with Manim] 7. Applying Updater and ValueTrackers to Graphing Scene

https://www.youtube.com/watch?v=KHGoFDB-raE 출처는 다음 영상입니다. 해당 포스팅은 파이썬에대한 기초적인 선행지식은 있다고 가정합니다. 모든 이미지는 클릭시 크게 볼 수 있습니다! [3B1B 따라잡기 list] 2023.05.11 - [Computer/3B1B 따라잡기 with ManimLibrary] - [3B1B 따라잡기 with Manim] 1. Manim 설치 with vscode 2023.05.12 - [Computer/3B1B 따라잡기 with ManimLibrary] - [3B1B 따라잡기 with Manim] 2. How to create Scene 2023.05.15 - [Computer/3B1B 따라잡기 with ManimLibrary] - [3B1B ..

Computer/3B1B 따라잡기 with ManimLibrary 2023. 5. 18. 12:52
[3B1B따라잡기 with Manim!][1일 1마님] 1. lag_ratio

1일 1마님 시리즈는 마님 documentation에 존재하는 예제 코드를 하루에 하나씩 따라하면서 마님 라이브러리 사용에 익숙해지기 위해 만든 시리즈입니다! 많은 시간을 들이기엔 주인장도 대학원생인지라 부담이 돼서 1일 1마님 시리즈는 간단하게 코드 + 코드 리뷰 + 실행 결과만 작성합니다! from manim import * class LagRatios(Scene): # Scene class를 상속받는다. def construct(self): ratios = [0, 0.1, 0.5, 1, 2] # lag ratio는 float형태로 받아야 한다. # Create dot groups : dot 형태의 이미지를 create group = VGroup(*[Dot() for _ in range(4)]).ar..

Computer/3B1B 따라잡기 with ManimLibrary 2023. 5. 18. 00:16
[3B1B 따라잡기 with Manim] 6. Graphing

https://www.youtube.com/watch?v=KHGoFDB-raE 출처는 다음 영상입니다. 해당 포스팅은 파이썬에대한 기초적인 선행지식은 있다고 가정합니다. [3B1B 따라잡기 list] 2023.05.11 - [Computer/코딩 개꿀팁] - [3B1B 따라잡기 with Manim] 1. Manim 설치 with vscode 2023.05.12 - [Computer/코딩 개꿀팁] - [3B1B 따라잡기 with Manim] 2. How to create Scene 2023.05.15 - [Computer/코딩 개꿀팁] - [3B1B 따라잡기 with Manim] 3. Error message 파악하기 2023.05.15 - [Computer/코딩 개꿀팁] - [3B1B 따라잡기 with ..

Computer/3B1B 따라잡기 with ManimLibrary 2023. 5. 16. 14:24
이전 1 2 다음
이전 다음
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
  • 벼랑끝 깃허브
  • 벼랑끝 강아지
TAG
  • 인공지능
  • 이왜안
  • Manimlibrary
  • marginal likelihood
  • 제한볼츠만머신
  • kld
  • 나노바디
  • 베이즈정리
  • 파이썬
  • Matrix algebra
  • 백준
  • 오일석기계학습
  • manimtutorial
  • ai신약개발
  • manim library
  • eigenvector
  • 3B1B따라잡기
  • MorganCircularfingerprint
  • nanobody
  • variational autoencoder
  • 선형대수
  • manim
  • MatrixAlgebra
  • kl divergence
  • MLE
  • 기계학습
  • 최대우도추정
  • 3b1b
  • eigenvalue
  • elementry matrix
more
«   2025/05   »
일 월 화 수 목 금 토
1 2 3
4 5 6 7 8 9 10
11 12 13 14 15 16 17
18 19 20 21 22 23 24
25 26 27 28 29 30 31
글 보관함

Blog is powered by Tistory / Designed by Tistory

티스토리툴바