본문 바로가기

삽질기초/ETC20

MATLAB BODE PLOT. num = [4500];den = [1 1 0]; G = tf(num , den);G1 = tf(1, den); G = G*G1; P = bodeoptions; % Set phase visiblity to off and frequency units to Hz in optionsP.PhaseVisible = 'on';P.FreqUnits = 'Hz'; % Create plot with the options specified by P bode(G,P)grid on >>help bodeoptions BODEOPTIONS Creates option list for Bode plot. P = BODEOPTIONS returns the default options for Bode plots. This list of.. 2009. 9. 16.
삼각함수 공식. sin(-θ)=-sinθ, cos(-θ)=cosθ, tan(-θ)=-tanθ sin²θ+cos²θ=1, sec²θ-tan²θ=1, csc²θ-cot²θ=1 sin(π/2-θ)=cosθ, sin(π/2+θ)=cosθ, sin(θ±π/2)=±cosθ cos(π/2-θ)=sinθ, cos(π/2+θ)=-sinθ, cos(θ±π/2)=Ŧsinθ sin(π-θ)=sinθ, sin(π+θ)=-sinθ, sin(θ±π)=-sinθ cos(π-θ)=-cosθ, cos(π+θ)=-cosθ, cos(θ±π)=-cosθ sin(α±β)=sinαcosβ±cosαsinβ, cos(α±β)=cosαcosβŦsinαsinβ tan(α+β)=tanα+tanβ/1-tanαtanβ, tan(α-β)=tanα-tanβ/1+tanαtanβ.. 2009. 9. 15.
MATLAB 미적. 미분 Examples: h = .001; x = 0:h:pi; diff(sin(x.^2))/h is an approximation to 2*cos(x.^2).*x diff((1:10).^2) is 3:2:19 If X = [3 7 5 0 9 2] then diff(X,1,1) is [-3 2 -3], diff(X,1,2) is [4 -2 9 -7], diff(X,2,2) is the 2nd order difference along the dimension 2, and diff(X,3,2) is the empty matrix. >> syms x>> diff(sin(x), x) ans = cos(x) 적분 int (S, v, a, b) S : 수식, v : 인자, a : 시작값, b : 끝값 Examples.. 2009. 9. 15.
MATLAB 이것저것.. %for, iftemp = 0; for n = 1:100 temp = temp + n; % 1~100까지 합end temp1 = 0;temp2 = 0; for n = 1:100 if 0 == rem(n, 2) temp1 = temp1 + n; % 짝수 합 else temp2 = temp2 + n; % 홀수 합 endend %switchX = 0:1:10; temp = rand; %임의의 수tmep = rem(temp,2)switch temp case 0 Y = sin(X); otherwise Y = cos(X);endplot(X, Y); %whiletemp1 = rand;temp2 = rand;while 1 temp = temp1 - temp2; if temp < 0 break; endendtemp %%.. 2009. 9. 15.
통신사별 DNS주소 통신사별 DNS 1. 두루넷 : 210.117.65.1 / 210.117.65.2 2. 신비로 : 202.30.143.11 / 203.240.193.11 3. 데이콤 : 164.124.101.2 / 203.248.252.2 4. 하나로 : 131.107.1.7 5. 한국통신 : 168.126.63.1 / 168.126.63.2 / 61.74.63.1 6. 드림라인 : 210.181.4.25 / 210.181.1.24 7. 하나포스 : 210.220.163.82 2009. 9. 9.
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.