Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
rotate
点の集合を回転
呼び出し手順
xy1=rotate(xy,[theta,orig])
引数
- xy
大きさ (2,.)の行列.
- xy1
大きさ (2,.)の行列.
- theta
実数, 角度(単位:ラジアン); デフォルト値は 0.
- orig
回転の中心 [xc;yc]; デフォルト値は [0;0].
説明
rotate
は角度 theta
を指定した
回転を行います:
xy1(:,i) = M(theta) *(xy(:,i) - orig) + orig
ただし, M
は対応する回転行列を意味します.
例
Report an issue | ||
<< orthProj | transform | scaling >> |