如何获得Hermite花键变形的偏移

时间:2019-04-25 07:52:45

标签: r spline

我正在尝试查找偏移以导出Hermite样条曲线变形函数。如果我知道如何找到转变,则可以进行其余的分析。我尝试阅读该理论,了解一些概念和直觉,但不知道如何找到转变。我正在附加R代码,但实际上没有做任何事情,因为我的首要任务是找到平移(水平平移)

#Packages to need to solve the homework
library(R.matlab)
library(splines)
library(car)
library(ggplot2)
library(MASS)
library(FactoMineR)
library(matrixStats)
#installed.packages('fpca')
library(fda)
#To derive the data
Data <- readMat("C:\\Users\\syeda\\Desktop\\Reserach PhD\\Data\\gait.mat")
#To separate Knee variable
kne<-Data$knee
t20 <- seq(0.025,0.975,len=20)
#To plot the raw data
matplot(t20,kne,type="l",xlab="time",ylab="Knee")
#Derive the finer time grid using 200 equispaced points
t <- seq(0.025,0.975,len=200)
#To derive knots
knt <- seq(0.025,0.975,len=7)
#To exclude the boundary points
knt <- knt[2:length(knt)-1]

0 个答案:

没有答案