Matlab을 이용한 왕관(crown) 형성과 회전
- 최초 등록일
- 2011.06.26
- 최종 저작일
- 2011.05
- 4페이지/ 한컴오피스
- 가격 2,000원
소개글
Matlab을 이용한 왕관(crown) 을 형성하고 회전시켜보는 과제입니다.
목차
서론:과제명
본론:관련이론 및 실습과정
결론:결과
기타:소스코드
본문내용
plot3
- Plot lines and points in 3-D space.
- PLOT3() is a three-dimensional analogue of PLOT().
- PLOT3(x,y,z), where x, y and z are three vectors of the same length,
plots a line in 3-space through the points whose coordinates are the
elements of x, y and z.
·subplot
- SUBPLOT Create axes in tiled positions.
H = SUBPLOT(m,n,p), or SUBPLOT(mnp), breaks the Figure window into an
m-by-n matrix of small axes, selects the p-th axes for the current plot,
and returns the axes handle. The axes are counted along the top row of the Figure
window, then the second row, etc.
·stem3
- 3-D stem plot.
- STEM3(X,Y,Z) plots the surface Z at the values specified in X and Y.
·z축 회전 matrix
- [ cos(θ) sin(θ) 0 ; sin(θ) cos(θ) 0; 0 0 1 ]
3. 실습과정
(1) 실습과정
t=0:pi/50:10*pi;
x1=2*cos(t);
참고 자료
없음