Description Usage Arguments Value Examples
Title testMat
1 |
a |
list of data tables of the checked thermograms using checkmat , obtained at different rates to change lines |
l.lim |
left lim of running integral |
r.lim |
rigth lim of running integral |
toselect |
vector |
data table ready to be used by all the methods for kinetic analysis included in the package
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | require(data.table)
npoints=1000
x=seq(1,npoints)
y=(dnorm(x, mean=npoints/2, sd=npoints/10))
x=seq(1,1000)
x2=seq(200,500,length.out=1000)
dat=data.frame(x,x2,y)
colnames(dat) <- c("time.seconds", "temperature.s","heat.flow")
dat=data.table(dat)
dat2=dat
dat$rates=20
dat2$rates=50
toTest=list(dat,dat2)
tested=testMat(toTest)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.