taninv

taninv — Calcule une fonction arctangente.

Description

Retourne arctangente de x (x en radians).

Syntaxe

taninv(x) (pas de restriction de taux)
taninv(k/i[]) (k- ou i-tableau)

Exemples

Voici une exemple de l'opcode taninv. Il utilise le fichier taninv.csd.

Exemple 1088. Exemple de l'opcode taninv.

Voir les sections Audio en Temps Réel et Options de la Ligne de Commande pour plus d'information sur l'utilisation des options de la ligne de commande.

<CsoundSynthesizer>
<CsOptions>
; Select audio/midi flags here according to platform
; Audio out   Audio in
-n  ; no sound
; For Non-realtime ouput leave only the line below:
; -o taninv.wav -W ;;; for file output any platform
</CsOptions>
<CsInstruments>

; by Kevin Conder

sr = 44100
ksmps = 32
nchnls = 2
0dbfs  = 1

instr 1

irad = 0.5
i1 = taninv(irad)
print i1

endin

</CsInstruments>
<CsScore>
i 1 0 1
e
</CsScore>
</CsoundSynthesizer>


Sa sortie contiendra cette ligne :

instr 1:  i1 = 0.464

Voir aussi

cos, cosh, cosinv, sin, sinh, sininv, tan, tanh, taninv2

Crédits

Auteur : John ffitch

Nouveau dans la version 3.48