testMat: Title testMat

Description Usage Arguments Value Examples

View source: R/testMat.R

Description

Title testMat

Usage

1
testMat(a, l.lim = 1, r.lim = NULL, toselect = c(0, 1, 2, 0, 0, 0, 3, 4))

Arguments

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

Value

data table ready to be used by all the methods for kinetic analysis included in the package

Examples

 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)

takos documentation built on Jan. 13, 2021, 4:11 p.m.

Related to testMat in takos...