[Matlab]patch 사용해 보기 - waitbar 구현을 위해...
WAITBAR 구현을 위하여 patch 기능을 알기 위해서 만든 예제 파일이다. hh=figure; bg_color = [.3 .35 .4]; %'b'; fg_color = [0 .5 0]; %'r'; h = axes('Parent',hh,'Units','pixel','Position',[1 1 300 10],'XLim',[0 1],'YLim',[0 1],... 'XTick',[],'YTick',[],'Color', bg_color,'XColor', bg_color,'YColor', bg_color); zdata=[0 0 0 0]; past_time=0; patch([0 0 1 1],[0 1 1 0],[0 0 0 0],[.3 .35 .4],'Parent',h,'EdgeColor', 'none','Eras..
2010. 5. 1.
[Matlab] C/C++의 함수 및 기능을 Matlab으로.. [2]
[1]에서 설명한 내용에 여러가지 결과를 출력하는 경우를 가정하여 예제를 꾸며 봤다. /* ========================================================================= */ #include "mex.h" void test1(int x, int y, int *z1, int *z2, int *z3) { *z1=x+y; *z2=x-y; *z3=x*y; } /* The gateway routine. */ void mexFunction(int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[]) { int x, y, *z1, *z2, *z3; x = (int)mxGetScalar(prhs[0]); y = (int..
2010. 5. 1.