pt.cut0 {rPraat} | R Documentation |
Cut the specified interval from the PitchTier and shift time so that the new tmin
= 0
pt.cut0(pt, tStart = -Inf, tEnd = Inf)
pt |
PitchTier object |
tStart |
beginning time of interval to be cut (default |
tEnd |
final time of interval to be cut (default |
PitchTier object
pt.cut
, pt.read
, pt.plot
, pt.Hz2ST
, pt.interpolate
, pt.legendre
, pt.legendreSynth
, pt.legendreDemo
pt <- pt.sample()
pt2 <- pt.cut(pt, tStart = 3)
pt2_0 <- pt.cut0(pt, tStart = 3)
pt3 <- pt.cut(pt, tStart = 2, tEnd = 3)
pt3_0 <- pt.cut0(pt, tStart = 2, tEnd = 3)
pt4 <- pt.cut(pt, tEnd = 1)
pt4_0 <- pt.cut0(pt, tEnd = 1)
pt5 <- pt.cut(pt, tStart = -1, tEnd = 1)
pt5_0 <- pt.cut0(pt, tStart = -1, tEnd = 1)
## Not run:
pt.plot(pt)
pt.plot(pt2)
pt.plot(pt2_0)
pt.plot(pt3)
pt.plot(pt3_0)
pt.plot(pt4)
pt.plot(pt4_0)
pt.plot(pt5)
pt.plot(pt5_0)
## End(Not run)