MATLAB에서 홈 기반 유형의 도형을 plot하는 함수를 만들었습니다.
3044 단어 matlab
이하 자르기로 실례 :
하지만 찾았을 때 그런 프로그램이 떨어지지 않았기 때문에 자작했습니다.
자작 함수
덧붙여서 일본어의 "홈베이스"는 영어로는 "baseball base"라는 것이 자연스러운 것 같습니다.
%%%
% Input: (x,y,theta) of point and baseballbase size
% Output: handle of plot
%%%
function handle = plot_baseballbase(x,y,theta,hsize)
d = hsize/2;
pts = [d 2*d d -d -d d;d 0 -d -d d d];
R = [cos(theta) -sin(theta); sin(theta) cos(theta)];
rpts = R*pts;
handle = plot(x+rpts(1,:),y+rpts(2,:),'k')
end
TODO
if nargin==4
option = 'default value';
end
Reference
이 문제에 관하여(MATLAB에서 홈 기반 유형의 도형을 plot하는 함수를 만들었습니다.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/ossyaritoori/items/f6e816531b6d52f1dc84텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)