16 lines
495 B
TypeScript
16 lines
495 B
TypeScript
import type { CsoundReference } from './types'
|
|
|
|
// Array Operations: Autocorrelation
|
|
export const arrayOperationsAutocorrelation: CsoundReference[] = [
|
|
{
|
|
name: 'autocorr',
|
|
type: 'opcode',
|
|
category: 'Array Operations: Autocorrelation',
|
|
description: 'This opcode takes in an input array and computes its autocorrelation.',
|
|
syntax: 'kout[] = autocorr(kin[])',
|
|
example: '--8<-- "examples/autocorr-modern.csd"',
|
|
rates: ['k-rate'],
|
|
seeAlso: ['Vectorial opcodes', 'array opcodes']
|
|
},
|
|
]
|