별의 공부 블로그 🧑🏻‍💻

🗒️ 행렬 (3)

728x90
  1. 2022.03.26 [Computer Animation] Geometric Transformations

    Geometric Transformations Geometric Transformation, $\mathbb{T}$ $\mathbb{T}$ is a function Geometric structure A → Geometric structure B A geo. structure is represented by a set of points or vectors in 2D o 3D in the general case. 2D Examples Scaling ● Scale by 2 in the y-axis. → $S(1, 2)$ ▶ $x^{'} = x$ ▶ $y^{'} = 2y$ ● Scale by 0.5 in the x-axis. → $S(0.5, 1)$ ▶ $x^{'} = 0.5x$ ▶ $y^{'} = y$ ● ..

  2. 2022.03.17 [TeX] 행렬(Matrix) 표현하기

    행렬(Matrix) 표현하기 개요 TeX에서 행렬(Matrix)을 포함하는 방법에는 5가지가 있다. 지시어 특징 matrix 괄호 없음 bmatrix 대괄호(bracket) : [ ] pmatrix 소괄호(parentheses) : ( ) vmatrix 세로줄(vertical) : | | Vmatrix 겹세로줄(Vertical) : || || ※ 이중에서 bmatrix 또는 pmatrix를 쓰는 것이 일반적이다. 사용 방법 \begin{지시어} item_1 & item_2 & ... & item_n \\ item_1 & item_2 & item_n \\ ... \end{지시어} \begin : 행렬의 시작 \end : 행렬의 끝 지시어 : 표현하고자 하는 행렬의 타입 & : 요소와 요소의 구분 \\ : ..

  3. 2021.05.19 [C++] 인접 행렬을 이용하여 그래프 구현하기

    인접 행렬을 이용하여 그래프 구현하기 서론 인접 행렬(Adjacent Matrix)을 이용하여 그래프(Graph)를 구현해보자. 코드 #include #include enum class city : int { MOSCOW, LONDON, SEOUL, SEATTLE, DUBAI, SYDNEY }; std::ostream& operator

728x90


📖 Contents 📖