summaryrefslogtreecommitdiff
path: root/Numerical_Methods_by_E_Balaguruswamy/CH9/EX9.11/Ex9_11.R
blob: 31463be2b12ffca0b204089a103e8c8d471ea07f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#Example 11     Chapter 9       Page no.: 306
#Cubic splines

#Installing and importing library 'pracma'
install.packages("pracma")
library("pracma")

#Given Data
mydata<-data.frame(i= c(0,1,2),
                  xi= c(4,9,16),
                  fi= c(2,3,4),
stringsAsFactors = TRUE  
  
)
mydata

x<-mydata$xi
f<-mydata$fi

#function to find spline at xi
C <- signif(cubicspline(x, f, xi = 7),5)  

cat("Cubic spline of f(7) is :",C)