Subject Note Function 수의 정의 정수 : 양의 정수, 음의 정수, 0 자연수 : 양의 정수 유리수 : a/b (a와 b는 정수, b는 0이 아님) 형태로 표현할 수 있는 수 절대값 |x1-x2| Math.abs(x1-x2) 비례와 반비례 비례 : y=ax (a는 임의의 상수) 반비례 : y=a/x (x는 0이 아님) 제곱근 a = b*b 에서 b는 a의 제곱근 Math.sqrt(b) 피타고라스 직각 삼각형의 경우 빗변이 아닌 두 변의 길이를 제곱해서 더한 값은 빗변을 제곱한 것과 같다. c*c = a*a + b*b c = Math.sqrt(a*a+b*b) 삼각함수1 sinθ = y, cosθ = x (θ는 radian) 호도각(degree) : 원 한바퀴를 360도로 표시한 것 라디안(..
Enabling remote desktop in Xubuntu LinuxXubuntu Linux does not provide the users and easy method of enabling Remote Desktop (RDP) protocol. The easiest method for easing this problem is to install vino. Open up Terminal and install and configure vino with the following commands. sudo apt-get update sudo apt-get install vino vino-preferences Check the appropriate boxes for enabling RDP. To enable..
grub2 install guide http://mojolog.com/tcb/420 http://www.ibm.com/developerworks/kr/library/l-grub2/ http://amunsen.springnote.com/pages/4520895 1. find disk sudo fdisk -l 2. install grub2 sudo grub-install --root-directory=/media/usbboot /dev/sdd 3. create grub setting file sudo gedit /media/usbboot/boot/grub/grub.cfg setting file ex) set timeout=10 set default=0 menuentry "Windows XP" { set ro..