-
Notifications
You must be signed in to change notification settings - Fork 0
/
Lagrange.c
57 lines (50 loc) · 1.05 KB
/
Lagrange.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include<conio.h>
#include<math.h>
#define MAXCHAR 1000
//Lagrange İnterpolasyonu
int main() {
}
/*Langrange metodu hesaplanmasi
n dosyadan alinan kac nokta alinacagi bilgisi
p degeri ise bulunmasini istedigimiz ara degeri temsil ediyor.
Bu kodlar kullanicidan deger aldiginda dogru hesaplamayi yapmistir.
*/
printf("Nokta sayisini giriniz : ");
scanf("%d",&n);
for(i=0; i<n; i++)
{
printf("\nX degerlerini giriniz x%d : ",i);
scanf("%f",&x[i]);
printf("\nY degerlerini giriniz f(x%d): ",i);
scanf("%f",&y[i]);
}
printf("\nBulmak istediginiz ara degeri giriniz f(x): ");
scanf("%f",&p);
for (i = 0; i < n; i++)
{
temp = 1;
k = i;
for (j = 0; j < n; j++)
{
if (k == j)
{
continue;
}
else
{
temp = temp * ((p - x[j]) / (x[k] - x[j]));
}
}
f[i] = y[i] * temp;
}
for (i = 0; i < n; i++)
{
sum = sum + f[i];
}
printf("\n\n f(%.1f) = %f ", p, sum);
_getch();
fclose(fp);
return 0;
}