Displaying 2 results from an estimated 2 matches for "signalseri".
Did you mean:
signaler
2008 Dec 09
1
package "wmtsa": wavCWTPeaks error (PR#13381)
Full_Name: Maura Monville
Version: 2.8
OS: Mac OS/X 10.5
Submission from: (NULL) (87.4.122.234)
Here is the code that causes wavCWTPeaks error
aats <- create.signalSeries(aa, pos=list(from=0.0, by=0.033))
aa.cwt <- wavCWT(aats)
x11 (width=10,height=12)
plot (aats,main=paste(insig," Cycle: ",j,sep=""))
aa.maxtree <- wavCWTTree (aa.cwt, type="maxima")
aa.mintree <- wavCWTTree (aa.cwt, type="minima")
a...
2008 Dec 12
0
Is there anyone in charge of package wmtsa ?
...the right end as any ties as the
1-cycle series length. Then I apply CWT to such prolonged series and then obtain the maxima trees and the peaks as follows:
aal <- rep (aa[1], length(aa))
aar <- rep (aa[length(aa)], length(aa))
aa3 <- c(aal,aa,aar)
aa3ts <- create.signalSeries(aa3, pos=list(from=0.0, by=0.033)) #CONVERT AMPLITUDE INTO TIME-SERIES
aa3.cwt <- wavCWT(aa3ts) #CWT
aa3.maxtree <- wavCWTTree (aa3.cwt, type="maxima") # GENERATE CWT MAXIMA TREE
aa3.maxpeak <- wavCWTP...