セクション 4. 章 7
single
Challenge: Combined Transformations of a Vector
メニューを表示するにはスワイプしてください
タスク
スワイプしてコーディングを開始
You are given a 2D vector:
v=[23]Your goal is to apply a scaling transformation followed by a 90° rotation using matrix multiplication, and visualize the results with arrows and coordinate labels from the origin.
The transformations are defined as:
- Scaling matrix: S=[2000.5]
- Rotation matrix (90°): R=[01−10]
The combined transformation is applied as:
R⋅(S⋅v)Your task:
- Define the original vector and the two matrices (
SandR). - Use matrix multiplication to compute:
- The scaled vector.
- The rotated vector.
- The combined transformation.
- Plot all vectors (
v,S·v, andR·(S·v)) as arrows from the origin with labeled tips and visible coordinate axes. - Verify that the computed vectors match the expected results after each transformation.
解答
すべて明確でしたか?
フィードバックありがとうございます!
セクション 4. 章 7
single
AIに質問する
AIに質問する
何でも質問するか、提案された質問の1つを試してチャットを始めてください