본문 바로가기

:D192

한국은 뭐시기뭐시기로 난리다. 난리다. 뭔 일이 터지기만 하면 뉴스부터 시작해서 블로거들이나 인기포탈싸이트 게시판 들에는 해당하는 일들이 죽죽죽죽 올라온다. 요 몇년간 지켜본(?)결과 나 나름의 결론을 내렸는데. 옹호하는 입장 하나.반대하는 입장 하나.관전하는 입장 하나.떡밥에 열광하는 입장 하나.주제하나 낚아서 열심히 글쓰는 입장 하나.이런저런 이야기들 긁어모아서 뉴스거리 만드는 언론도 추가.그리고 음~ 모르거나 관심없는 입장 하나? 과연 한국엔 뭐뭐로 난리다 라는 뉴스나 글들은 정말 믿을만한걸까 라고 말하고 싶다. 짧은 생각이나마 생각해본건데. 우리나라는 왜 구체적인 통계자료도 없이 국민들 국민들 운운하는 걸까. 아무생각없이 글들을 읽다보면 아 그렇구나~ 하고 수긍하는 거겠지. 유명 포탈싸이트나 블로그나 뉴스가 다 그런이야기를 떠든다고 해.. 2009. 9. 21.
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.
구글 크롬 플러스. 이번에 또 크롬이 업데이트 됐다. 현재버전은 3.0.195.21 더 빨라졌으려나~ :) 아래는 크롬 플러스.http://www.chromeplus.org/download.html IE 텝, 마우스 제스쳐 등등을 제공한다.옵션 등등이 영어. 확실히 쓸만하긴 쓸만한것 같음. 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.