목록All (635)
Brise
-- 광속(Luminous Flux, Ø)단위: lm(루멘)광원으로부터 방출되어 눈에 감지되는 광선의 총출력량을 광속이라 칭한다.측정단위: Lumen(lm)광원의 가시광선 출력량은 Watt로 표시하지 않고 Lumen으로 표시하는데,그 까닭은 인간의 눈이 파장에 따라 서로 다르게 감응하기 때문이다. 조도(Illuminance, E)단위: lux(룩스)조도는 일정한 평면이 밝게 비추이는 정도를 말한다.조도는 조명되는 면적과 광속의 비율로 결정된다.단위: 1lx는 1lm의 광속이 평방미터의 면적에 균일하게 비추일 때를 말한다.그러나 실제로는 단위면적에 광속이 균일하게 분배되어,빛이 비춰진 면적의 모든 점에서 조도가 모두 같게 측정되 지는 않는다 ------------------------------------..
-- http://blog.naver.com/lkhmodel71/80047410633 --
고유벡터와 고유값의 정의와 이해 MIT 강의 http://ocw.mit.edu/courses/mathematics/18-06-linear-algebra-spring-2010/video-lectures/
-- -- call by value : 함수를 호출 할 때에 변수의 '복사본'을 전달. 함수 내부에서 변경된 사항에 대해서는 원본에 영향력을 가지지 않는다. e.g. (int a) call by reference : 함수를 호출할 때에 변수의 '링크(포인터)' 를 전달. 함수 내부에서 변경될 때에 포인터를 참조하여 변경되므로 바로 원본이 변경된다. e.g. (int * a) C언어에서 배열은 기본적으로 포인터이므로 int a[] = int * a call by value로 배열을 호출하는 것은 불가능하다. http://egloos.zum.com/coldwave/v/2377331 -- --
-- -- 12345678910111213141516171819202122232425262728293031323334353637383940#include #define ARR_ROW 4#define ARR_COL 3void add_array(int row, int col, int Arr[][col]){ int i,j; for(i=0; i
-- -- http://www.mire2000.co.kr/Frm_Board/frm_list.asp?SearchKey=&SearchValue=&category=lecture&frm_board_id=%B0%FC%BB%F3&frm_notice=%27n%27&page=21&block=2&RC=-10 -- --
Fig. 1 Simplified Michaelson InterferometerThe Problem: To detect sound within a room (having an outside window) at a distance. There are several methods that might accomplish this, with some fidelity; [1] however this page will describe the use of a LASER Microphone. The use of a LASER to transduce sound from a window pane/glass is commonly used in movies which leave the mistaken impression tha..