매트랩에서는 imfilter만 써 봤었는데.. 막상 low pass filter를 어떻게 써야 될지 몰라서 막막해 하다가 구글에서 찾았음. % Examples of Butterworth filter design using Matlab function "butter" % [b,a]=butter(n,0.4) % nth order low pass filter with normalized % cut-off frequency 0.4 [b,a]=butter(n,0.4,'high') % nth order high pass filter [b,a]=butter(n,[0.2 0.5]) % 2*nth order bandpass filter with edge % frequencies 0.2 and 0.5 [b,a]=butte..
1. MATLAB Compiler 준비 (MATLAB 설치 CD에 보면 설치 옵션으로 있음) 2. 매트랩 command window에서 >> mbuild –setup %적당한 C컴파일러를 고른다 >> mcc –m hoho.m %hoho.m 파일을 exe 파일로 만든다 %주의할 사항 : script M-file은 exe파일로 만들 수 없다. 반드시 function 형태의 m파일 로 만들 것! 참고 : http://www.mathworks.com/access/helpdesk/help/toolbox/compiler/index.html?/access/helpdesk/help/toolbox/compiler/f13-1003481.html 3. 만들어진 exe파일을 매트랩이 없는 다른 컴퓨터에서 실행하기 위해서는 h..