This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
# 수치해석, 김상철 교수님 | |
# 1. Incremental Search, Bisection, False Position, | |
# Newton-Raphson, Secant Method 정리 | |
# 20163179 홍승환 | |
import numpy as np | |
import math | |
from scipy.optimize import fsolve |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Heroquizz "(친구)를 얼마나 잘 알고 있나요?" 분석 스크립트 | |
* @author Seunghwan Hong (@harrydrippin) | |
*/ | |
/* 사용 방법 | |
* 1. 친구 페이스북에 링크된 "(이름)을 얼마나 잘 알고 있나요?" 링크를 클릭합니다. | |
* 2. "준비!" 버튼을 누르고, 만약 페이스북 인증을 요구하면 인증을 진행합니다. | |
* 3. 1번 문제가 뜨면 개발자 도구를 띄웁니다. (Chrome에서 Ctrl + Shift + I (Mac에서는 Cmd + Option + I)) | |
* 4. Console, 혹은 콘솔을 찾고 그 하단에 아래 소스(둘 중 아무거나 괜찮음)를 복사하여 넣고 Enter를 칩니다. |