반응형 plot31 Matlab 실습 14. 3D 그래프 그리기 문제 : 바닥에서 20바퀴를 돌아 꼭지점에 도달하는 원추형 선 그래프를 그려보자 코드 : clear, clf turns=20*2*pi; theta=linspace(0,turns,4000); x=cos(theta).*(turns-theta)./turns; y=sin(theta).*(turns-theta)./turns; z=theta./turns; plot3(x,y,z) 그래프 2022. 12. 24. 이전 1 다음 반응형