Skip to content

1D box-spline library for limited spline parametrizations

License

Notifications You must be signed in to change notification settings

CFD-GO/boxspline1

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

boxspline1

1D box-spline library for limited spline parametrizations

R Package

You can install the R package with the use of devtools:

devtools::install_github("CFD-GO/boxspline1",subdir="R")

See the documentation with:

library(boxspline1)
?boxspline1

And try with:

x = seq(0,1,len=100)
Y = rnorm(10)
y = boxspline1(x, Y, order=0)
plot(x, y, type="l")
y = boxspline1(x, Y, order=1)
lines(x, y, type="l", col=2)
y = boxspline1(x, Y, order=2)
lines(x, y, type="l", col=3)
y = boxspline1(x, Y, order=3)
lines(x, y, type="l", col=4)

About

1D box-spline library for limited spline parametrizations

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published