Advertisement
12Me21

3.3 part 2

May 14th, 2016
370
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.12 KB | None | 0 0
  1. "BIQUAD":{
  2. "description":"BiQuad filter",
  3. "parameters":"BIQUAD Output array, Input array, Filter array"
  4.  
  5. "BQPARAM":{
  6. "description":"Calculates the filter coefficients of a BiQuad filter",
  7. "parameters":"BQPARAM Filter array, Filter type, Sampling rate, Cutoff frequency, Q value(Bandwidth) [,Amplification] "
  8.  
  9. "FFT":{
  10. "description":"Preforms Fourier transform on complex number arrays",
  11. "parameters":"FFT Real output array, Imaginary output array, Real input array, Imaginary input array [,Window array]"
  12.  
  13. "IFFT":{
  14. "description":"Preforms Inverse Fourier transform on complex number arrays",
  15. "parameters":"FFT Real output array, Imaginary output array, Real input array, Imaginary input array"
  16.  
  17. "FFTWFN":{
  18. "description":"Returns values of the specified window function to an array",
  19. "parameters":"FFTWFN Output array, Window type"
  20.  
  21. "PCMSTREAM (1)":{
  22. "description":"Assigns the specified array to the left and right channels to preform PCM playback\n\t\t- The length of the array specified first will be looped on playback",
  23. "parameters":"PCMSTREAM Pcm array [,Sampling rate]"
  24. "PCMSTREAM (2)":{
  25. "description":"Preforms PCM playback using arrays from the left and right\n\t\t- The length of the array specified first will be looped on playback",
  26. "parameters":"PCMSTREAM Left array, Right array [,Sampling rate]"
  27. "PCMSTREAM (3)":{
  28. "description":"Changes the sampling rate of the PCMSTREAM currently being played back (if not being played back, no change)",
  29. "parameters":"PCMSTREAM Sampling rate"
  30.  
  31. "PCMPOS":{
  32. "description":"System variable that indicates the top position (array index) of transfer to the internal PCMSTREAM FIFO stack (when stack becomes empty, transfer will start from this position)",
  33. "parameters":"PCMPOS"
  34.  
  35. "PCMVOL":{
  36. "description":"Sets the volume of PCMSTREAM",
  37. "parameters":"PCMVOL [Channel,] Volume"
  38.  
  39. "PCMSTOP":{
  40. "description":"Stops PCMSTREAM",
  41. "parameters":"PCMSTOP"
  42.  
  43. "PCMCONT":{
  44. "description":"Resumes playback from the state when PCMSTREAM was stopped",
  45. "parameters":"PCMCONT"
  46.  
  47. "ARYOP":{
  48. "description":"Performs arithmetic operations on elements between arrays collectively\n\t\tetc.",
  49. "parameters":"ARYOP Operation type, Result storage array variable, Parameter 1, Parameter 2 [,Parameter 3]"
  50.  
  51. "RINGCOPY":{
  52. "description":"Instruction that copies data using the copy destination array variable as a ring buffer\n\t\t RINGCOPY copies values between arrays just like the copy instruction. However, when the copy source has more elements than the copy destination, RINGCOPY will not increase the number of elements, but return to the top and copy the remaining elements.",
  53. "parameters":"RINGCOPY Copy destination array, Copy destination offset,Copy source array [[,Copy source offset],Number of copy elements]"
  54.  
  55. "RINGCOPY":{
  56. "description":"Instruction that copies data using the copy destination array variable as a ring buffer\n\t\tIf used in a function type command, RINGCOPY returns the end position of the data copied as a ring buffer.",
  57. "parameters":"Variable = RINGCOPY(Copy destination array, Copy destination offset,Copy source array [[,Copy source offset],Number of copy elements])"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement