|
#include<stdio.h>
#include<stdlib.h>
#include<math.h>
#define fa(x) (exp(x))
int k,m,n1;
double s[10],x[10],f[10],p[10];
void lagrange(void);
void main(void)
{
int i;
double error;
/* 파일 입출력을 위한 파일 지정 부분 */
FILE *in, *out;
in=fopen(\\\"data.i
|
- 페이지 8페이지
- 가격 1,000원
- 등록일 2004.11.29
- 파일종류 압축파일
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
Lagrange Polynomial : 6 Point 이용(입력받은 두점이 시작점과 끝점)
Hermite Interpolation : 3 Point 이용(입력받은 두점이 시작점과 끝점)
Spline Interpolation : 5 Point 이용(입력받은 두점이 시작점과 끝점)
Solution of Equation에서의 각 메소드를 구현하는데 있어
|
- 페이지 19페이지
- 가격 2,000원
- 등록일 2006.12.14
- 파일종류 한글(hwp)
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
인 폴리에틸렌 시트를 덮는다.
『보간법』
■라그랑지 보간법 (Lagrange Interpolation)
라그랑주 보간법을 쓰면 좌표평면 위에 주어진 n개의 점을 모두 지나는 다항식을 비교적 쉽게 구할 수 있다. 라그랑주 보간법은 다음의 식으로 나타낼 수 있다.
|
- 페이지 5페이지
- 가격 1,300원
- 등록일 2013.07.09
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
interpolation using Lagrange Polynomial
y' = (2y/t)+t^2*e^2 , for 1<=t<=2 with y(1)=0 and h=0.1
Compare with actual solution and get the error.
*/
#include<stdio.h>
#include<math.h>
float Taylor4(float w, float t);
float y(float t);
float h = 0.1;
main(){
int i, N = 10;
float t, y1
|
- 페이지 7페이지
- 가격 800원
- 등록일 2006.06.01
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|