|
False Position method at a=0 , b=pi/2
for the value of x with x - cos(x) = 0
*/
#include<stdio.h>
#include<math.h>
#define TOL 0.0001
#define pi 3.141592
float f(float x);
int sgn(float x);
float absol(float x);
main()
{
int n;
float a, b, p1, p2;
n = 1;
p1 = a = 0;
p2 = b = pi/2;
while(
|
- 페이지 9페이지
- 가격 800원
- 등록일 2006.06.01
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
Methods
2. False-Position Methods
◎ Comments ◎
그래프를 통해 분석해 보면 근의 위치는 1과 1.5 사이에 위치한다. 8에서 9사이에도 근이 존재하지만 R = 3 m 이므로 depth h가 6이상이 될 수는 없다. Bisection Method가 1% 미만으로 들어올 때 까지를 비교해보면 F
|
- 페이지 10페이지
- 가격 1,000원
- 등록일 2008.06.25
- 파일종류 한글(hwp)
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
1.5000
1.4844
0.0179
1.051
8
1.4688
1.4844
1.4766
-0.0034
0.528
9
1.4766
1.4844
1.4805
0.0073
0.263
10
1.4766
1.4805
1.4785
0.0019
0.135
11
1.4766
1.4785
1.4775
-0.0007
0.068
False-position of Bracketing method
function y = han3(x);
y = x^2 - 0.2333*x - 1.8391221;
end
>>falsi('han3', 0, 2, 0.0
|
- 페이지 17페이지
- 가격 3,000원
- 등록일 2008.05.26
- 파일종류 한글(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주 판매 이력 없음
|
|
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주 판매 이력 없음
|