csound-expression-opcodes-0.0.5.1: opcodes for the library csound-expression
Safe HaskellNone
LanguageHaskell2010

Csound.Typed.Opcode.ZakPatchSystem

Synopsis

Documentation

zacl :: Sig -> Sig -> SE () Source #

Clears one or more variables in the za space.

 zacl  kfirst, klast

csound doc: http://csound.com/docs/manual/zacl.html

zakinit :: D -> D -> SE () Source #

Establishes zak space.

Establishes zak space. Must be called only once.

 zakinit  isizea, isizek

csound doc: http://csound.com/docs/manual/zakinit.html

zamod :: Sig -> Sig -> Sig Source #

Modulates one a-rate signal by a second one.

ares  zamod  asig, kzamod

csound doc: http://csound.com/docs/manual/zamod.html

zar :: Sig -> Sig Source #

Reads from a location in za space at a-rate.

ares  zar  kndx

csound doc: http://csound.com/docs/manual/zar.html

zarg :: Sig -> Sig -> Sig Source #

Reads from a location in za space at a-rate, adds some gain.

ares  zarg  kndx, kgain

csound doc: http://csound.com/docs/manual/zarg.html

zaw :: Sig -> Sig -> SE () Source #

Writes to a za variable at a-rate without mixing.

 zaw  asig, kndx

csound doc: http://csound.com/docs/manual/zaw.html

zawm :: Sig -> Sig -> SE () Source #

Writes to a za variable at a-rate with mixing.

 zawm  asig, kndx [, imix]

csound doc: http://csound.com/docs/manual/zawm.html

zir :: D -> D Source #

Reads from a location in zk space at i-rate.

ir  zir  indx

csound doc: http://csound.com/docs/manual/zir.html

ziw :: D -> D -> SE () Source #

Writes to a zk variable at i-rate without mixing.

 ziw  isig, indx

csound doc: http://csound.com/docs/manual/ziw.html

ziwm :: D -> D -> SE () Source #

Writes to a zk variable to an i-rate variable with mixing.

 ziwm  isig, indx [, imix]

csound doc: http://csound.com/docs/manual/ziwm.html

zkcl :: Sig -> Sig -> SE () Source #

Clears one or more variables in the zk space.

 zkcl  kfirst, klast

csound doc: http://csound.com/docs/manual/zkcl.html

zkmod :: Sig -> Sig -> Sig Source #

Facilitates the modulation of one signal by another.

kres  zkmod  ksig, kzkmod

csound doc: http://csound.com/docs/manual/zkmod.html

zkr :: Sig -> Sig Source #

Reads from a location in zk space at k-rate.

kres  zkr  kndx

csound doc: http://csound.com/docs/manual/zkr.html

zkw :: Sig -> Sig -> SE () Source #

Writes to a zk variable at k-rate without mixing.

 zkw  ksig, kndx

csound doc: http://csound.com/docs/manual/zkw.html

zkwm :: Sig -> Sig -> SE () Source #

Writes to a zk variable at k-rate with mixing.

 zkwm  ksig, kndx [, imix]

csound doc: http://csound.com/docs/manual/zkwm.html