Please note that the recommended version of Scilab is 2026.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 は対応する回転行列を意味します.
例
| << move | transform | scaling >> |