Learn R Programming

takos (version 0.2.0)

testMat: Title testMat

Description

Title testMat

Usage

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

Run this code
# NOT RUN {
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)
# }

Run the code above in your browser using DataLab