본문 바로가기

삽질기초81

DSP281x_Gpio.c //########################################################################### //// FILE:DSP281x_Gpio.c//// TITLE:DSP281x General Purpose I/O Initialization & Support Functions.////########################################################################### //===========================I/O Register function============================// EALLOW;//GpioMuxRegs.GPAMUX.all=0x0000;// 핀기능 설정. 일반(0) 특수(1).. 2009. 8. 21.
http://freebookspot.in/ http://freebookspot.in/ 원서 모아둔거. 2009. 7. 10.
Gradient, Divergence, Curl ... http://en.wikipedia.org/wiki/Del Gradient Divergence Curl Directional derivative Laplacian Tensor derivative Del From Wikipedia, the free encyclopedia For other uses, see Del (disambiguation). ∇ Del operator, represented by the nabla symbol. In vector calculus, del is a vector differential operator represented by the nabla symbol: . Del is a mathematical tool serving primarily as a convention fo.. 2009. 6. 5.
[MFC] Tips 보통의 팝업윈도우를 생성할 때에는 일반적인 방법으로는 팝업 윈도우가 생성되면서 그 윈도우가 활성화 되고 포커스가 가게 됩니다. 가끔 이러한 현상을 원하지 않을 때가 있을수 있습니다. 그럴땐 이렇게 해주면 됩니다. 우선 1. WS_VISIBLE속성 없이 창을 생성합니다. 그뒤 2. SetWindowPos로 활성화 없이 창을 보이게 하면 됩니다. 간단한 코드 입니다. m_pPopUpWnd->Create(m_hWnd, rc, NULL, WS_POPUP, m_clrBackColor, m_crShadow, m_crHilight, m_pFont, this); m_pPopUpWnd->SetWindowPos(HWND_NOTOPMOST , 0, 0, 0, 0, SWP_NOSIZE | SWP_NOZORDER | SWP_N.. 2009. 5. 13.
MATLAB 함수들. A = [ 1 -5 23; -3 5 8; 2 5 -9] B = [1+1i 2+1i 3+1i 1+2i 2+2i 2+3i 3+4i 5+2i 1+1i] C = 20 X = 0:1:10 Y = sin(X) %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% abs_A = abs(A) %절대값, 복소수의 크기 angle_B = angle(B) %위상각 ans %좌변에 변수가 없을때의 정답. 현재 ans 의 값 atan_C= atan(C) %아크 탄젠트 % help에 있는 예제 % x = -20:0.01:20; % plot(x,atan(x)), grid on %axis %그래프에서 각 축의 범위를 변경하고자 할때 사용. %축의 범위를 변경.. 2009. 4. 22.
[MATLAB] 단위계단함수 %ut t = -30 : 0.01 : 30; x(t0)=1; plot(t,x) axis([-5 5 -2 2]) %xy축 범위 변경 grid on %눈금 그리기 figure x1= (t+1>0); %t+1>0 x1에 대입 plot(t,x1,':') % x축 t y축은 x1 hold on x2=-2*(t-1>0); plot(t,x2,'-r') hold on x3=(t-3>0); plot(t,x3) axis([-10 10 -5 5]) grid on title('u(t+1)-2u(t-1)+u(t-3)') figure %새로운 그래프창 만들기 x=x1+x2+x3; %합쳐서 대입 plot(t,x) %그래프 그리기 axis([-10 10 -5 5]) %번위변경 grid on %눈금 2009. 4. 22.