Description Methods Author(s) See Also Examples
These methods are used for viewing template lists and other objects.
For all types of objects documented here, show
and summary
will produce identical results.
signature(object = "binTemplateList")
Displays a summary of binTemplateList
objects.
signature(object = "corTemplateList")
Displays a summary of corTemplateList
objects.
signature(object = "TemplateList")
Displays a summary of TemplateList
objects.
signature(object = "detectionList")
Displays a summary of detectionList
objects.
signature(object = "templateScores")
Displays a summary of templateScores
objects.
Sasha D. Hafner
makeCorTemplate
,
makeBinTemplate
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | # Load data
data(btnw)
data(oven)
# Write Wave objects to file (temporary directory used here)
btnw.fp <- file.path(tempdir(), "btnw.wav")
oven.fp <- file.path(tempdir(), "oven.wav")
writeWave(btnw, btnw.fp)
writeWave(oven, oven.fp)
# Correlation example
# Create two correlation templates
wct <- makeCorTemplate(btnw.fp, t.lim = c(1.5, 2.1), frq.lim = c(4.2, 5.6), name = "w")
oct <- makeCorTemplate(oven.fp, t.lim = c(1, 4), frq.lim = c(1, 11), dens = 0.1, name = "o")
# Combine them
ctemps <- combineCorTemplates(wct, oct)
# Then for a quick summary:
ctemps
# Clean up (only because these files were created in these examples)
file.remove(btnw.fp)
file.remove(oven.fp)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.