|
printf(\"\\na%i=%.10f\", n, a);
printf(\"\\tb%i=%.10f\", n, b);
printf(\"\\tp%i=%.10f\", n, p);
printf(\"\\tf(p%i)=%.10f\", n, f(p));
if(f(a)*f(p)<0)
b=p;
else
a=p;
}
}
double f(double x)
{
return(pow(x,2)-2);
}
|
- 페이지 2페이지
- 가격 500원
- 등록일 2009.06.15
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
%d \n\", xd,it);
fclose(in);
fclose(out); /* 수치해석 레포트1-1*/
/* The Incremental Search Method */
/* 수치해석 레포트1-2*/
/* The Bisection Method */
/* 수치해석 레포트1-3*/
/* The Method of False Position */
/* 수치해석 레포트1-4*/
/* Newton-Raphson Method */
|
- 페이지 8페이지
- 가격 1,000원
- 등록일 2004.11.26
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
소스를 사용 하였는데 차이점이 잇엇다. 1.알고리즘
1) Bisection Method
2) secant Method
3) Newton Method
2. Source code에 대한 주석을 자세히 기입
1) Bisection Method
2) secant Method
3) Newton Method
3. 각 방법들의 결과에 대한 상호 비교 분석
4. 토의
|
- 페이지 9페이지
- 가격 1,500원
- 등록일 2008.12.07
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
C++ 코드 입니다..
한학기 내용 정리하고 C++ 코드 올려놨어요.. 1.Choleski
2.Bairstow Method
3.Bisection Method
4.Crout
5.Doolittle
6.False Position Method
7.Gauss-Elimination Method
8.Gauss-Jordan Method
9.Gauss-Seidel Method
10.Inverse Matrix Method
11.LU-Decomposition Method
12
|
- 페이지 17페이지
- 가격 3,000원
- 등록일 2008.11.06
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
#include<stdio.h>
#include<math.h>
#define TRUE 1
#define Pi 3.141592
double function(double x)
{
double y;
y=-256.25*x+1650 ;
return(y);
}
void main()
{
int index,N;
double a,b,p,fa,fb,fp,TOL,tol;
char exitcondition; C언어 소스
|
- 페이지 3페이지
- 가격 1,500원
- 등록일 2007.04.13
- 파일종류 기타
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|