목차
Lagrange Method
문제
C알고리즘
결과출력
본문내용
Lagrange Method
(0,2) (0,5) (1,4)
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#define MAXDATA 10
/*..Global variable declaration..*/
int NumData;
double Xi[MAXDATA],Yi[MAXDATA],Coeff[MAXDATA];
/*..Function prototypes..*/
void getPolynomialCoeff(int n,double a[],int m,double b[]);
int min(int a, int b) ;
void main()
.........
참고 자료
없음