[단국대학교 공학수치해석] 파이썬(Python) 코딩과제 - 교과목 + 개인과제 포함
수석성적인증
다운로드
장바구니
소개글
단국대학교 공학수치해석 한 학기동안의 Pyhon 코딩 과제입니다.아래 목차 순서대로 한글파일로 정리하였습니다.
개인과제 및 데이터 그리고 출처도 포함하였습니다.
코딩에 익숙하지 않은 분들은 처음에 어려움을 겪으실 겁니다.
해당 파일을 그대로 인용하기보다 상세한 주석과 설명을 바탕으로 학습에 도움이 되시길 바랍니다.
목차
1. [20180920]Chapter3, Chapter92. [20180927]Chapter10
3. [20181011]Chapter5, Chapter6, Chapter7
4. [20181011]Chapter11
5. [20181025]Chapter19
6. [20181101]개인과제(1)그래프
7. [20181101]개인과제(1)코딩
8. [20181108]개인과제(2)그래프
9. [20181108]개인과제(2)코딩
10. [20181115]Chapter25+개인과제(3)그래프
11. [20181115]Chapter25+개인과제(3)코딩
12. [20181129]Chapter31, Chapter36
13. [20181206]Chapter39, Chapter40그래프
14. [20181206]Chapter39, Chapter40코딩
15. 개인과제_데이터 및 참고문헌
본문내용
Chapter 40Problem 40.1 & 40.3
(그래프를 한 번에 나타내었습니다.)
from numpy import linspace, zeros, sin, cos, exp
import numpy as np
import matplotlib.pyplot as plt
import seaborn as sns
from scipy import interpolate
from numpy.linalg import det
from scipy.optimize import curve_fit
sns.set(style="whitegrid")
## Euler-Method
def f(t,y,v):
return (t**2-1.0)*y
t0=0
tf=4
n=11
y0=1.0
v0=0.0
t=linspace(t0,tf,n)
y_exact=exp(-t**2/2)
def euler_set(f,t,y0,v0,n):
h=(tf-t0)/(n-1)
y=zeros(n)
v=zeros(n)
y[0]=y0
v[0]=v0
for i in range(0,n-1):
y[i+1]=y[i]+h*v[i]
v[i+1]=v[i]+h*f(t[i],y[i],v[i])
return y,v
y,v=euler_set(f,t,y0,v0,n)
print('%5s %8s %8s' %('t','y_Euler','v_Euler'))
for i in range(0,n):
print('%5.1f %9.4f %9.4f' %(t[i],y[i],v[i]))
참고 자료
http://kosis.kr/statHtml/statHtml.do?orgId=106&tblId=DT_106N_03_0200045http://www.nlotto.co.kr/gameResult.do?method=byWin#none
https://sizekorea.kr/page/report/1
압축파일 내 파일목록
단국대학교_공학수치해석_Python_코딩과제/[20180920]_Chapter3, Chapter9.hwp
단국대학교_공학수치해석_Python_코딩과제/[20180927]_Chapter10.hwp
단국대학교_공학수치해석_Python_코딩과제/[20181011]_Chapter11.hwp
단국대학교_공학수치해석_Python_코딩과제/[20181011]_Chapter5, Chapter6, Chapter7.hwp
단국대학교_공학수치해석_Python_코딩과제/[20181025]_Chapter19.hwp
단국대학교_공학수치해석_Python_코딩과제/[20181101]_개인과제(1)_그래프.hwp
단국대학교_공학수치해석_Python_코딩과제/[20181101]_개인과제(1)_코딩.hwp
단국대학교_공학수치해석_Python_코딩과제/[20181108]_개인과제(2)_그래프.hwp
단국대학교_공학수치해석_Python_코딩과제/[20181108]_개인과제(2)_코딩.hwp
단국대학교_공학수치해석_Python_코딩과제/[20181115]_Chapter25+개인과제(3)_그래프.hwp
단국대학교_공학수치해석_Python_코딩과제/[20181115]_Chapter25+개인과제(3)_코딩.hwp
단국대학교_공학수치해석_Python_코딩과제/[20181129]_Chapter31, Chapter36.hwp
단국대학교_공학수치해석_Python_코딩과제/[20181206]_Chapter39, Chapter40_그래프.hwp
단국대학교_공학수치해석_Python_코딩과제/[20181206]_Chapter39, Chapter40_코딩.hwp
단국대학교_공학수치해석_Python_코딩과제/개인과제_데이터 및 참고문헌/
단국대학교_공학수치해석_Python_코딩과제/개인과제_데이터 및 참고문헌/2015_7차_측정 데이터(직접)/
단국대학교_공학수치해석_Python_코딩과제/개인과제_데이터 및 참고문헌/2015_7차_측정 데이터(직접)/2015_7차_직접측정 데이터.xlsx
단국대학교_공학수치해석_Python_코딩과제/개인과제_데이터 및 참고문헌/dust.xlsx
단국대학교_공학수치해석_Python_코딩과제/개인과제_데이터 및 참고문헌/LottoNumber.xls
단국대학교_공학수치해석_Python_코딩과제/개인과제_데이터 및 참고문헌/Originaldust.xlsx
단국대학교_공학수치해석_Python_코딩과제/개인과제_데이터 및 참고문헌/Untitled.m
단국대학교_공학수치해석_Python_코딩과제/개인과제_데이터 및 참고문헌/남녀발사이즈.xlsx
단국대학교_공학수치해석_Python_코딩과제/개인과제_데이터 및 참고문헌/참고문헌.txt
단국대학교_공학수치해석_Python_코딩과제/[20180927]_Chapter10.hwp
단국대학교_공학수치해석_Python_코딩과제/[20181011]_Chapter11.hwp
단국대학교_공학수치해석_Python_코딩과제/[20181011]_Chapter5, Chapter6, Chapter7.hwp
단국대학교_공학수치해석_Python_코딩과제/[20181025]_Chapter19.hwp
단국대학교_공학수치해석_Python_코딩과제/[20181101]_개인과제(1)_그래프.hwp
단국대학교_공학수치해석_Python_코딩과제/[20181101]_개인과제(1)_코딩.hwp
단국대학교_공학수치해석_Python_코딩과제/[20181108]_개인과제(2)_그래프.hwp
단국대학교_공학수치해석_Python_코딩과제/[20181108]_개인과제(2)_코딩.hwp
단국대학교_공학수치해석_Python_코딩과제/[20181115]_Chapter25+개인과제(3)_그래프.hwp
단국대학교_공학수치해석_Python_코딩과제/[20181115]_Chapter25+개인과제(3)_코딩.hwp
단국대학교_공학수치해석_Python_코딩과제/[20181129]_Chapter31, Chapter36.hwp
단국대학교_공학수치해석_Python_코딩과제/[20181206]_Chapter39, Chapter40_그래프.hwp
단국대학교_공학수치해석_Python_코딩과제/[20181206]_Chapter39, Chapter40_코딩.hwp
단국대학교_공학수치해석_Python_코딩과제/개인과제_데이터 및 참고문헌/
단국대학교_공학수치해석_Python_코딩과제/개인과제_데이터 및 참고문헌/2015_7차_측정 데이터(직접)/
단국대학교_공학수치해석_Python_코딩과제/개인과제_데이터 및 참고문헌/2015_7차_측정 데이터(직접)/2015_7차_직접측정 데이터.xlsx
단국대학교_공학수치해석_Python_코딩과제/개인과제_데이터 및 참고문헌/dust.xlsx
단국대학교_공학수치해석_Python_코딩과제/개인과제_데이터 및 참고문헌/LottoNumber.xls
단국대학교_공학수치해석_Python_코딩과제/개인과제_데이터 및 참고문헌/Originaldust.xlsx
단국대학교_공학수치해석_Python_코딩과제/개인과제_데이터 및 참고문헌/Untitled.m
단국대학교_공학수치해석_Python_코딩과제/개인과제_데이터 및 참고문헌/남녀발사이즈.xlsx
단국대학교_공학수치해석_Python_코딩과제/개인과제_데이터 및 참고문헌/참고문헌.txt