what have i done

This commit is contained in:
2025-10-15 15:05:23 +02:00
parent c5733897ea
commit 1015e9e18f
123 changed files with 28542 additions and 1030 deletions

View File

@ -0,0 +1,15 @@
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']
},
]