JSyn ---- Java Audio
Synthesis API
SynthTable
-
Random access table used with TableOscillator and WaveShaper units.
-
Contains floating point data.
-
Create a table with guard point.
SynthTable myTable = new SynthTable( 256 + 1 );
Write double[] array of data to table and use table on oscillator.
myTable.write( data );
myWaveOsc.tablePort.useTable( myTable );
[TOP] [PREVIOUS]
[NEXT] [EXAMPLE]
Visit the JSyn or SoftSynth
home pages.