pt.interpolate: pt.interpolate

Description Usage Arguments Details Value See Also Examples

View source: R/pt.R

Description

Interpolates PitchTier contour in given time instances.

Usage

1

Arguments

pt

PitchTier object

t

vector of time instances of interest

Details

a) If t < min(pt$t) (or t > max(pt$t)), returns the first (or the last) value of pt$f. b) If t is existing point in pt$t, returns the respective pt$f. c) If t is between two existing points, returns linear interpolation of these two points.

Value

PitchTier object

See Also

pt.getPointIndexNearestTime, pt.read, pt.write, pt.plot, pt.Hz2ST, pt.cut, pt.cut0, pt.legendre

Examples

1
2
3
4
5
6
7
8
pt <- pt.sample()
pt <- pt.Hz2ST(pt, ref = 100)  # conversion of Hz to Semitones, reference 0 ST = 100 Hz.
pt2 <- pt.interpolate(pt, seq(pt$t[1], pt$t[length(pt$t)], by = 0.001))
## Not run: 
pt.plot(pt)
pt.plot(pt2)

## End(Not run)

rPraat documentation built on Feb. 28, 2021, 1:06 a.m.