fmax

fmax — Maximum value function.

Description

Returns the maximum of its two arguments.

Syntax

ires[] fmax iarg1[], iarg2[] 
kres[] fmax karg1[], karg2[]
ires[] fmax iarg1[], iarg2 
kres[] fmax karg[], karg2 

Initialization

iarg[]1/2, iarg2 -- the operands.

Performance

karg[]1/2, karg2 -- the operands

Examples

Here is an example of the fmax opcode. It uses the file fmax.csd.

Example 350. Example of the fmax opcode.

See the sections Real-time Audio and Command Line Flags for more information on using command line flags.

<CsoundSynthesizer>
<CsOptions>
</CsOptions>
<CsInstruments>


instr 1

iArg1[] fillarray 1,8,3
iArg2[] fillarray 4,5,6
iRes[] fmax iArg1,iArg2
ik init 0

while ik < lenarray(iRes) do
 print iRes[ik]
 ik += 1
od

endin

</CsInstruments>
<CsScore>
i1 0 0
</CsScore>
</CsoundSynthesizer>


Credits

Author: Victor Lazzarini
2017