File: index.html

package info (click to toggle)
faust 2.30.5~ds0-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 279,348 kB
  • sloc: cpp: 239,368; javascript: 32,310; ansic: 17,442; sh: 11,925; java: 5,903; objc: 3,879; makefile: 3,030; cs: 1,139; python: 987; ruby: 951; xml: 693; yacc: 537; lex: 239; lisp: 201; awk: 110
file content (1128 lines) | stat: -rw-r--r-- 64,817 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="utf-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        
        
        
        <link rel="shortcut icon" href="../img/favicon.ico">
        <title>Index - Faust Libraries</title>
        <link href="../css/bootstrap.min.css" rel="stylesheet">
        <link href="../css/font-awesome.min.css" rel="stylesheet">
        <link href="../css/base.css" rel="stylesheet">
        <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/styles/github.min.css">
        <link href="../css/extra.css" rel="stylesheet">

        <script src="../js/jquery-1.10.2.min.js" defer></script>
        <script src="../js/bootstrap.min.js" defer></script>
        <script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/highlight.min.js"></script>
        <script>hljs.initHighlightingOnLoad();</script> 
    </head>

    <body>
        <div class="navbar fixed-top navbar-expand-lg navbar-dark bg-primary">
            <div class="container">
                <a class="navbar-brand" href=".."><img src="../img/faustText.svg" width="150px"> Libraries</a>
                <!-- Expander button -->
                <button type="button" class="navbar-toggler" data-toggle="collapse" data-target="#navbar-collapse">
                    <span class="navbar-toggler-icon"></span>
                </button>

                <!-- Expanded navigation -->
                <div id="navbar-collapse" class="navbar-collapse collapse">
                        <!-- Main navigation -->
                        <ul class="nav navbar-nav">
                            <li class="dropdown">
                                <a href="#" class="nav-link dropdown-toggle" data-toggle="dropdown">Overview <b class="caret"></b></a>
                                <ul class="dropdown-menu">
                                    
<li>
    <a href="../organization/" class="dropdown-item"> Organization </a>
</li>
                                    
<li>
    <a href="../standardFunctions/" class="dropdown-item"> Standard Functions </a>
</li>
                                    
<li>
    <a href="../contributing/" class="dropdown-item"> Contributing </a>
</li>
                                    
<li>
    <a href="../copyright/" class="dropdown-item"> Copyright/License </a>
</li>
                                </ul>
                            </li>
                            <li class="navitem active">
                                <a href="./" class="nav-link">Index</a>
                            </li>
                            <li class="dropdown">
                                <a href="#" class="nav-link dropdown-toggle" data-toggle="dropdown">Libraries <b class="caret"></b></a>
                                <ul class="dropdown-menu">
                                    
<li>
    <a href="analyzers/" class="dropdown-item"> analyzers </a>
</li>
                                    
<li>
    <a href="basics/" class="dropdown-item"> basics </a>
</li>
                                    
<li>
    <a href="compressors/" class="dropdown-item"> compressors </a>
</li>
                                    
<li>
    <a href="delays/" class="dropdown-item"> delays </a>
</li>
                                    
<li>
    <a href="demos/" class="dropdown-item"> demos </a>
</li>
                                    
<li>
    <a href="dx7/" class="dropdown-item"> dx7 </a>
</li>
                                    
<li>
    <a href="envelopes/" class="dropdown-item"> envelopes </a>
</li>
                                    
<li>
    <a href="filters/" class="dropdown-item"> filters </a>
</li>
                                    
<li>
    <a href="hoa/" class="dropdown-item"> hoa </a>
</li>
                                    
<li>
    <a href="interpolators/" class="dropdown-item"> interpolators </a>
</li>
                                    
<li>
    <a href="maths/" class="dropdown-item"> maths </a>
</li>
                                    
<li>
    <a href="mi/" class="dropdown-item"> mi </a>
</li>
                                    
<li>
    <a href="misceffects/" class="dropdown-item"> misceffects </a>
</li>
                                    
<li>
    <a href="oscillators/" class="dropdown-item"> oscillators </a>
</li>
                                    
<li>
    <a href="noises/" class="dropdown-item"> noises </a>
</li>
                                    
<li>
    <a href="phaflangers/" class="dropdown-item"> phaflangers </a>
</li>
                                    
<li>
    <a href="physmodels/" class="dropdown-item"> physmodels </a>
</li>
                                    
<li>
    <a href="quantizer/" class="dropdown-item"> quantizer </a>
</li>
                                    
<li>
    <a href="reducemaps/" class="dropdown-item"> reducemaps </a>
</li>
                                    
<li>
    <a href="reverbs/" class="dropdown-item"> reverbs </a>
</li>
                                    
<li>
    <a href="routes/" class="dropdown-item"> routes </a>
</li>
                                    
<li>
    <a href="signals/" class="dropdown-item"> signals </a>
</li>
                                    
<li>
    <a href="soundfiles/" class="dropdown-item"> soundfiles </a>
</li>
                                    
<li>
    <a href="spats/" class="dropdown-item"> spats </a>
</li>
                                    
<li>
    <a href="synths/" class="dropdown-item"> synths </a>
</li>
                                    
<li>
    <a href="vaeffects/" class="dropdown-item"> vaeffects </a>
</li>
                                    
<li>
    <a href="wavedigitalfilters/" class="dropdown-item"> wavedigitalfilters </a>
</li>
                                    
<li>
    <a href="webaudio/" class="dropdown-item"> webaudio </a>
</li>
                                </ul>
                            </li>
                            <li class="navitem">
                                <a href="../about/" class="nav-link">About</a>
                            </li>
                        </ul>

                    <ul class="nav navbar-nav ml-auto">
                        <li class="nav-item">
                            <a href="#" class="nav-link" data-toggle="modal" data-target="#mkdocs_search_modal">
                                <i class="fa fa-search"></i> Search
                            </a>
                        </li>
                    </ul>
                </div>
            </div>
        </div>
        
        

        <div class="container">
            <div class="row"><div class="col-md-3"><div class="navbar-light navbar-expand-md bs-sidebar hidden-print affix" role="complementary">
    <div class="navbar-header">
        <button type="button" class="navbar-toggler collapsed" data-toggle="collapse" data-target="#toc-collapse" title="Table of Contents">
            <span class="fa fa-angle-down"></span>
        </button>
    </div>

    
    <div id="toc-collapse" class="navbar-collapse collapse card bg-secondary">
        <ul class="nav flex-column">
            
            <li class="nav-item" data-level="1"><a href="#faust-libraries-index" class="nav-link">Faust Libraries Index</a>
              <ul class="nav flex-column">
            <li class="nav-item" data-level="2"><a href="#analyzers" class="nav-link">analyzers</a>
              <ul class="nav flex-column">
              </ul>
            </li>
            <li class="nav-item" data-level="2"><a href="#basics" class="nav-link">basics</a>
              <ul class="nav flex-column">
              </ul>
            </li>
            <li class="nav-item" data-level="2"><a href="#compressors" class="nav-link">compressors</a>
              <ul class="nav flex-column">
              </ul>
            </li>
            <li class="nav-item" data-level="2"><a href="#delays" class="nav-link">delays</a>
              <ul class="nav flex-column">
              </ul>
            </li>
            <li class="nav-item" data-level="2"><a href="#demos" class="nav-link">demos</a>
              <ul class="nav flex-column">
              </ul>
            </li>
            <li class="nav-item" data-level="2"><a href="#dx7" class="nav-link">dx7</a>
              <ul class="nav flex-column">
              </ul>
            </li>
            <li class="nav-item" data-level="2"><a href="#envelopes" class="nav-link">envelopes</a>
              <ul class="nav flex-column">
              </ul>
            </li>
            <li class="nav-item" data-level="2"><a href="#filters" class="nav-link">filters</a>
              <ul class="nav flex-column">
              </ul>
            </li>
            <li class="nav-item" data-level="2"><a href="#hoa" class="nav-link">hoa</a>
              <ul class="nav flex-column">
              </ul>
            </li>
            <li class="nav-item" data-level="2"><a href="#interpolators" class="nav-link">interpolators</a>
              <ul class="nav flex-column">
              </ul>
            </li>
            <li class="nav-item" data-level="2"><a href="#maths" class="nav-link">maths</a>
              <ul class="nav flex-column">
              </ul>
            </li>
            <li class="nav-item" data-level="2"><a href="#mi" class="nav-link">mi</a>
              <ul class="nav flex-column">
              </ul>
            </li>
            <li class="nav-item" data-level="2"><a href="#misceffects" class="nav-link">misceffects</a>
              <ul class="nav flex-column">
              </ul>
            </li>
            <li class="nav-item" data-level="2"><a href="#oscillators" class="nav-link">oscillators</a>
              <ul class="nav flex-column">
              </ul>
            </li>
            <li class="nav-item" data-level="2"><a href="#noises" class="nav-link">noises</a>
              <ul class="nav flex-column">
              </ul>
            </li>
            <li class="nav-item" data-level="2"><a href="#phaflangers" class="nav-link">phaflangers</a>
              <ul class="nav flex-column">
              </ul>
            </li>
            <li class="nav-item" data-level="2"><a href="#physmodels" class="nav-link">physmodels</a>
              <ul class="nav flex-column">
              </ul>
            </li>
            <li class="nav-item" data-level="2"><a href="#quantizer" class="nav-link">quantizer</a>
              <ul class="nav flex-column">
              </ul>
            </li>
            <li class="nav-item" data-level="2"><a href="#reducemaps" class="nav-link">reducemaps</a>
              <ul class="nav flex-column">
              </ul>
            </li>
            <li class="nav-item" data-level="2"><a href="#reverbs" class="nav-link">reverbs</a>
              <ul class="nav flex-column">
              </ul>
            </li>
            <li class="nav-item" data-level="2"><a href="#routes" class="nav-link">routes</a>
              <ul class="nav flex-column">
              </ul>
            </li>
            <li class="nav-item" data-level="2"><a href="#signals" class="nav-link">signals</a>
              <ul class="nav flex-column">
              </ul>
            </li>
            <li class="nav-item" data-level="2"><a href="#soundfiles" class="nav-link">soundfiles</a>
              <ul class="nav flex-column">
              </ul>
            </li>
            <li class="nav-item" data-level="2"><a href="#spats" class="nav-link">spats</a>
              <ul class="nav flex-column">
              </ul>
            </li>
            <li class="nav-item" data-level="2"><a href="#synths" class="nav-link">synths</a>
              <ul class="nav flex-column">
              </ul>
            </li>
            <li class="nav-item" data-level="2"><a href="#vaeffects" class="nav-link">vaeffects</a>
              <ul class="nav flex-column">
              </ul>
            </li>
            <li class="nav-item" data-level="2"><a href="#wavedigitalfilters" class="nav-link">wavedigitalfilters</a>
              <ul class="nav flex-column">
              </ul>
            </li>
            <li class="nav-item" data-level="2"><a href="#webaudio" class="nav-link">webaudio</a>
              <ul class="nav flex-column">
              </ul>
            </li>
              </ul>
            </li>
        </ul>
    </div>
</div></div>
                    <div class="col-md-9 main-container" role="main">

<h1 id="faust-libraries-index">Faust Libraries Index</h1>
<hr />
<h2 id="analyzers">analyzers</h2>
<p><a href="analyzers/#anabs_envelope_rect">(an.)abs_envelope_rect</a> &nbsp; &nbsp;
<a href="analyzers/#anabs_envelope_tau">(an.)abs_envelope_tau</a> &nbsp; &nbsp;
<a href="analyzers/#anabs_envelope_t60">(an.)abs_envelope_t60</a> &nbsp; &nbsp;
<a href="analyzers/#anabs_envelope_t19">(an.)abs_envelope_t19</a> &nbsp; &nbsp;
<a href="analyzers/#anamp_follower">(an.)amp_follower</a> &nbsp; &nbsp;
<a href="analyzers/#anamp_follower_ud">(an.)amp_follower_ud</a> &nbsp; &nbsp;
<a href="analyzers/#anamp_follower_ar">(an.)amp_follower_ar</a> &nbsp; &nbsp;
<a href="analyzers/#anms_envelope_rect">(an.)ms_envelope_rect</a> &nbsp; &nbsp;
<a href="analyzers/#anms_envelope_tau">(an.)ms_envelope_tau</a> &nbsp; &nbsp;
<a href="analyzers/#anms_envelope_t60">(an.)ms_envelope_t60</a> &nbsp; &nbsp;
<a href="analyzers/#anms_envelope_t19">(an.)ms_envelope_t19</a> &nbsp; &nbsp;
<a href="analyzers/#anrms_envelope_rect">(an.)rms_envelope_rect</a> &nbsp; &nbsp;
<a href="analyzers/#anrms_envelope_tau">(an.)rms_envelope_tau</a> &nbsp; &nbsp;
<a href="analyzers/#anrms_envelope_t60">(an.)rms_envelope_t60</a> &nbsp; &nbsp;
<a href="analyzers/#anrms_envelope_t19">(an.)rms_envelope_t19</a> &nbsp; &nbsp;
<a href="analyzers/#anzcr">(an.)zcr</a> &nbsp; &nbsp;
<a href="analyzers/#anmth_octave_analyzer">(an.)mth_octave_analyzer</a> &nbsp; &nbsp;
<a href="analyzers/#anmth_octave_spectral_level6e">(an.)mth_octave_spectral_level6e</a> &nbsp; &nbsp;
<a href="analyzers/#anthirdhalf_octave_analyzerfilterbank">(an.)[third|half]<em>octave</em>[analyzer|filterbank]</a> &nbsp; &nbsp;
<a href="analyzers/#ananalyzer">(an.)analyzer</a> &nbsp; &nbsp;
<a href="analyzers/#angortzelopt-">(an.)gortzelOpt </a> &nbsp; &nbsp;
<a href="analyzers/#angortzelcomp-">(an.)gortzelComp </a> &nbsp; &nbsp;
<a href="analyzers/#angoertzel-">(an.)goertzel </a> &nbsp; &nbsp;
<a href="analyzers/#anfft-">(an.)fft </a> &nbsp; &nbsp;
<a href="analyzers/#anifft">(an.)ifft</a> &nbsp; &nbsp;</p>
<h2 id="basics">basics</h2>
<p><a href="basics/#basamp2sec">(ba.)samp2sec</a> &nbsp; &nbsp;
<a href="basics/#basec2samp">(ba.)sec2samp</a> &nbsp; &nbsp;
<a href="basics/#badb2linear">(ba.)db2linear</a> &nbsp; &nbsp;
<a href="basics/#balinear2db">(ba.)linear2db</a> &nbsp; &nbsp;
<a href="basics/#balin2loggain">(ba.)lin2LogGain</a> &nbsp; &nbsp;
<a href="basics/#balog2lingain">(ba.)log2LinGain</a> &nbsp; &nbsp;
<a href="basics/#batau2pole">(ba.)tau2pole</a> &nbsp; &nbsp;
<a href="basics/#bapole2tau">(ba.)pole2tau</a> &nbsp; &nbsp;
<a href="basics/#bamidikey2hz">(ba.)midikey2hz</a> &nbsp; &nbsp;
<a href="basics/#bahz2midikey">(ba.)hz2midikey</a> &nbsp; &nbsp;
<a href="basics/#basemi2ratio">(ba.)semi2ratio</a> &nbsp; &nbsp;
<a href="basics/#baratio2semi">(ba.)ratio2semi</a> &nbsp; &nbsp;
<a href="basics/#bapianokey2hz">(ba.)pianokey2hz</a> &nbsp; &nbsp;
<a href="basics/#bahz2pianokey">(ba.)hz2pianokey</a> &nbsp; &nbsp;
<a href="basics/#bacountdown">(ba.)countdown</a> &nbsp; &nbsp;
<a href="basics/#bacountup">(ba.)countup</a> &nbsp; &nbsp;
<a href="basics/#basweep">(ba.)sweep</a> &nbsp; &nbsp;
<a href="basics/#batime">(ba.)time</a> &nbsp; &nbsp;
<a href="basics/#baramp">(ba.)ramp</a> &nbsp; &nbsp;
<a href="basics/#batempo">(ba.)tempo</a> &nbsp; &nbsp;
<a href="basics/#baperiod">(ba.)period</a> &nbsp; &nbsp;
<a href="basics/#bapulse">(ba.)pulse</a> &nbsp; &nbsp;
<a href="basics/#bapulsen">(ba.)pulsen</a> &nbsp; &nbsp;
<a href="basics/#bacycle">(ba.)cycle</a> &nbsp; &nbsp;
<a href="basics/#babeat">(ba.)beat</a> &nbsp; &nbsp;
<a href="basics/#bapulse_countup">(ba.)pulse_countup</a> &nbsp; &nbsp;
<a href="basics/#bapulse_countdown">(ba.)pulse_countdown</a> &nbsp; &nbsp;
<a href="basics/#bapulse_countup_loop">(ba.)pulse_countup_loop</a> &nbsp; &nbsp;
<a href="basics/#baresetctr">(ba.)resetCtr</a> &nbsp; &nbsp;
<a href="basics/#bapulse_countdown_loop">(ba.)pulse_countdown_loop</a> &nbsp; &nbsp;
<a href="basics/#bacount">(ba.)count</a> &nbsp; &nbsp;
<a href="basics/#batake">(ba.)take</a> &nbsp; &nbsp;
<a href="basics/#basubseq">(ba.)subseq</a> &nbsp; &nbsp;
<a href="basics/#baif">(ba.)if</a> &nbsp; &nbsp;
<a href="basics/#baselector">(ba.)selector</a> &nbsp; &nbsp;
<a href="basics/#baselect2stereo">(ba.)select2stereo</a> &nbsp; &nbsp;
<a href="basics/#baselectn">(ba.)selectn</a> &nbsp; &nbsp;
<a href="basics/#baselectmulti">(ba.)selectmulti</a> &nbsp; &nbsp;
<a href="basics/#balatch">(ba.)latch</a> &nbsp; &nbsp;
<a href="basics/#basandh">(ba.)sAndH</a> &nbsp; &nbsp;
<a href="basics/#badownsample">(ba.)downSample</a> &nbsp; &nbsp;
<a href="basics/#bapeakhold">(ba.)peakhold</a> &nbsp; &nbsp;
<a href="basics/#bapeakholder">(ba.)peakholder</a> &nbsp; &nbsp;
<a href="basics/#baimpulsify">(ba.)impulsify</a> &nbsp; &nbsp;
<a href="basics/#baautomat">(ba.)automat</a> &nbsp; &nbsp;
<a href="basics/#babpf">(ba.)bpf</a> &nbsp; &nbsp;
<a href="basics/#balistinterp">(ba.)listInterp</a> &nbsp; &nbsp;
<a href="basics/#babypass1">(ba.)bypass1</a> &nbsp; &nbsp;
<a href="basics/#babypass2">(ba.)bypass2</a> &nbsp; &nbsp;
<a href="basics/#babypass1to2">(ba.)bypass1to2</a> &nbsp; &nbsp;
<a href="basics/#babypass_fade">(ba.)bypass_fade</a> &nbsp; &nbsp;
<a href="basics/#batoggle">(ba.)toggle</a> &nbsp; &nbsp;
<a href="basics/#baon_and_off">(ba.)on_and_off</a> &nbsp; &nbsp;
<a href="basics/#baselectoutn">(ba.)selectoutn</a> &nbsp; &nbsp;
<a href="basics/#baslidingreduce">(ba.)slidingReduce</a> &nbsp; &nbsp;
<a href="basics/#baslidingsum">(ba.)slidingSum</a> &nbsp; &nbsp;
<a href="basics/#baslidingsump">(ba.)slidingSump</a> &nbsp; &nbsp;
<a href="basics/#baslidingmax">(ba.)slidingMax</a> &nbsp; &nbsp;
<a href="basics/#baslidingmin">(ba.)slidingMin</a> &nbsp; &nbsp;
<a href="basics/#baslidingmean">(ba.)slidingMean</a> &nbsp; &nbsp;
<a href="basics/#baslidingmeanp">(ba.)slidingMeanp</a> &nbsp; &nbsp;
<a href="basics/#baslidingrms">(ba.)slidingRMS</a> &nbsp; &nbsp;
<a href="basics/#baslidingrmsp">(ba.)slidingRMSp</a> &nbsp; &nbsp;
<a href="basics/#baparallelop">(ba.)parallelOp</a> &nbsp; &nbsp;
<a href="basics/#baparallelmax">(ba.)parallelMax</a> &nbsp; &nbsp;
<a href="basics/#baparallelmin">(ba.)parallelMin</a> &nbsp; &nbsp;
<a href="basics/#baparallelmean">(ba.)parallelMean</a> &nbsp; &nbsp;
<a href="basics/#baparallelrms">(ba.)parallelRMS</a> &nbsp; &nbsp;</p>
<h2 id="compressors">compressors</h2>
<p><a href="compressors/#copeak_compression_gain_mono">(co.)peak_compression_gain_mono</a> &nbsp; &nbsp;
<a href="compressors/#copeak_compression_gain_n_chan">(co.)peak_compression_gain_N_chan</a> &nbsp; &nbsp;
<a href="compressors/#coffcompressor_n_chan">(co.)FFcompressor_N_chan</a> &nbsp; &nbsp;
<a href="compressors/#cofbcompressor_n_chan">(co.)FBcompressor_N_chan</a> &nbsp; &nbsp;
<a href="compressors/#cofffbcompressor_n_chan">(co.)FFFBcompressor_N_chan</a> &nbsp; &nbsp;
<a href="compressors/#corms_compression_gain_mono">(co.)RMS_compression_gain_mono</a> &nbsp; &nbsp;
<a href="compressors/#corms_compression_gain_n_chan">(co.)RMS_compression_gain_N_chan</a> &nbsp; &nbsp;
<a href="compressors/#corms_fffbcompressor_n_chan">(co.)RMS_FFFBcompressor_N_chan</a> &nbsp; &nbsp;
<a href="compressors/#corms_fbcompressor_peak_limiter_n_chan">(co.)RMS_FBcompressor_peak_limiter_N_chan</a> &nbsp; &nbsp;
<a href="compressors/#cocompressor_lad_mono">(co.)compressor_lad_mono</a> &nbsp; &nbsp;
<a href="compressors/#cocompressor_mono">(co.)compressor_mono</a> &nbsp; &nbsp;
<a href="compressors/#cocompressor_stereo">(co.)compressor_stereo</a> &nbsp; &nbsp;
<a href="compressors/#cocompression_gain_mono">(co.)compression_gain_mono</a> &nbsp; &nbsp;
<a href="compressors/#colimiter_1176_r4_mono">(co.)limiter_1176_R4_mono</a> &nbsp; &nbsp;
<a href="compressors/#colimiter_1176_r4_stereo">(co.)limiter_1176_R4_stereo</a> &nbsp; &nbsp;
<a href="compressors/#colimiter_lad_n">(co.)limiter_lad_N</a> &nbsp; &nbsp;
<a href="compressors/#colimiter_lad_mono">(co.)limiter_lad_mono</a> &nbsp; &nbsp;
<a href="compressors/#colimiter_lad_stereo">(co.)limiter_lad_stereo</a> &nbsp; &nbsp;
<a href="compressors/#colimiter_lad_quad">(co.)limiter_lad_quad</a> &nbsp; &nbsp;
<a href="compressors/#colimiter_lad_bw">(co.)limiter_lad_bw</a> &nbsp; &nbsp;</p>
<h2 id="delays">delays</h2>
<p><a href="delays/#dedelay">(de.)delay</a> &nbsp; &nbsp;
<a href="delays/#defdelay">(de.)fdelay</a> &nbsp; &nbsp;
<a href="delays/#desdelay">(de.)sdelay</a> &nbsp; &nbsp;
<a href="delays/#defdelaylti-and-defdelayltv">(de.)fdelaylti and (de.)fdelayltv</a> &nbsp; &nbsp;
<a href="delays/#defdelayn">(de.)fdelay[n]</a> &nbsp; &nbsp;
<a href="delays/#defdelayna">(de.)fdelay[n]a</a> &nbsp; &nbsp;</p>
<h2 id="demos">demos</h2>
<p><a href="demos/#dmmth_octave_spectral_level_demo">(dm.)mth_octave_spectral_level_demo</a> &nbsp; &nbsp;
<a href="demos/#dmparametric_eq_demo">(dm.)parametric_eq_demo</a> &nbsp; &nbsp;
<a href="demos/#dmspectral_tilt_demo">(dm.)spectral_tilt_demo</a> &nbsp; &nbsp;
<a href="demos/#dmmth_octave_filterbank_demo-and-dmfilterbank_demo">(dm.)mth_octave_filterbank_demo and (dm.)filterbank_demo</a> &nbsp; &nbsp;
<a href="demos/#dmcubicnl_demo">(dm.)cubicnl_demo</a> &nbsp; &nbsp;
<a href="demos/#dmgate_demo">(dm.)gate_demo</a> &nbsp; &nbsp;
<a href="demos/#dmcompressor_demo">(dm.)compressor_demo</a> &nbsp; &nbsp;
<a href="demos/#dmmoog_vcf_demo">(dm.)moog_vcf_demo</a> &nbsp; &nbsp;
<a href="demos/#dmwah4_demo">(dm.)wah4_demo</a> &nbsp; &nbsp;
<a href="demos/#dmcrybaby_demo">(dm.)crybaby_demo</a> &nbsp; &nbsp;
<a href="demos/#dmflanger_demo">(dm.)flanger_demo</a> &nbsp; &nbsp;
<a href="demos/#dmphaser2_demo">(dm.)phaser2_demo</a> &nbsp; &nbsp;
<a href="demos/#dmfreeverb_demo">(dm.)freeverb_demo</a> &nbsp; &nbsp;
<a href="demos/#dmstereo_reverb_tester">(dm.)stereo_reverb_tester</a> &nbsp; &nbsp;
<a href="demos/#dmfdnrev0_demo">(dm.)fdnrev0_demo</a> &nbsp; &nbsp;
<a href="demos/#dmzita_rev_fdn_demo">(dm.)zita_rev_fdn_demo</a> &nbsp; &nbsp;
<a href="demos/#dmzita_light">(dm.)zita_light</a> &nbsp; &nbsp;
<a href="demos/#dmzita_rev1">(dm.)zita_rev1</a> &nbsp; &nbsp;
<a href="demos/#dmsawtooth_demo">(dm.)sawtooth_demo</a> &nbsp; &nbsp;
<a href="demos/#dmvirtual_analog_oscillator_demo">(dm.)virtual_analog_oscillator_demo</a> &nbsp; &nbsp;
<a href="demos/#dmoscrs_demo-">(dm.)oscrs_demo </a> &nbsp; &nbsp;
<a href="demos/#dmvelvet_noise_demo">(dm.)velvet_noise_demo</a> &nbsp; &nbsp;
<a href="demos/#dmlatch_demo">(dm.)latch_demo</a> &nbsp; &nbsp;
<a href="demos/#dmenvelopes_demo">(dm.)envelopes_demo</a> &nbsp; &nbsp;
<a href="demos/#dmfft_spectral_level_demo">(dm.)fft_spectral_level_demo</a> &nbsp; &nbsp;
<a href="demos/#dmreverse_echo_demonchans">(dm.)reverse_echo_demo(nChans)</a> &nbsp; &nbsp;
<a href="demos/#dmpospass_demo">(dm.)pospass_demo</a> &nbsp; &nbsp;
<a href="demos/#dmexciter">(dm.)exciter</a> &nbsp; &nbsp;
<a href="demos/#dmvocoder_demo">(dm.)vocoder_demo</a> &nbsp; &nbsp;</p>
<h2 id="dx7">dx7</h2>
<p><a href="dx7/#dxdx7_ampf">(dx.)dx7_ampf</a> &nbsp; &nbsp;
<a href="dx7/#dxdx7_egraterisef">(dx.)dx7_egraterisef</a> &nbsp; &nbsp;
<a href="dx7/#dxdx7_egraterisepercf">(dx.)dx7_egraterisepercf</a> &nbsp; &nbsp;
<a href="dx7/#dxdx7_egratedecayf">(dx.)dx7_egratedecayf</a> &nbsp; &nbsp;
<a href="dx7/#dxdx7_egratedecaypercf">(dx.)dx7_egratedecaypercf</a> &nbsp; &nbsp;
<a href="dx7/#dxdx7_eglv2peakf">(dx.)dx7_eglv2peakf</a> &nbsp; &nbsp;
<a href="dx7/#dxdx7_velsensf">(dx.)dx7_velsensf</a> &nbsp; &nbsp;
<a href="dx7/#dxdx7_fdbkscalef">(dx.)dx7_fdbkscalef</a> &nbsp; &nbsp;
<a href="dx7/#dxdx7_op">(dx.)dx7_op</a> &nbsp; &nbsp;
<a href="dx7/#dxdx7_algo">(dx.)dx7_algo</a> &nbsp; &nbsp;
<a href="dx7/#dxdx7_ui">(dx.)dx7_ui</a> &nbsp; &nbsp;</p>
<h2 id="envelopes">envelopes</h2>
<p><a href="envelopes/#ensmoothenvelope">(en.)smoothEnvelope</a> &nbsp; &nbsp;
<a href="envelopes/#enar">(en.)ar</a> &nbsp; &nbsp;
<a href="envelopes/#enarfe">(en.)arfe</a> &nbsp; &nbsp;
<a href="envelopes/#enare">(en.)are</a> &nbsp; &nbsp;
<a href="envelopes/#enasr">(en.)asr</a> &nbsp; &nbsp;
<a href="envelopes/#enadsr">(en.)adsr</a> &nbsp; &nbsp;
<a href="envelopes/#enadsre">(en.)adsre</a> &nbsp; &nbsp;
<a href="envelopes/#enasre">(en.)asre</a> &nbsp; &nbsp;
<a href="envelopes/#endx7envelope">(en.)dx7envelope</a> &nbsp; &nbsp;</p>
<h2 id="filters">filters</h2>
<p><a href="filters/#fizero">(fi.)zero</a> &nbsp; &nbsp;
<a href="filters/#fipole">(fi.)pole</a> &nbsp; &nbsp;
<a href="filters/#fiintegrator">(fi.)integrator</a> &nbsp; &nbsp;
<a href="filters/#fidcblockerat">(fi.)dcblockerat</a> &nbsp; &nbsp;
<a href="filters/#fidcblocker">(fi.)dcblocker</a> &nbsp; &nbsp;
<a href="filters/#filptn">(fi.)lptN</a> &nbsp; &nbsp;
<a href="filters/#fiff_comb">(fi.)ff_comb</a> &nbsp; &nbsp;
<a href="filters/#fiff_fcomb">(fi.)ff_fcomb</a> &nbsp; &nbsp;
<a href="filters/#fiffcombfilter">(fi.)ffcombfilter</a> &nbsp; &nbsp;
<a href="filters/#fifb_comb">(fi.)fb_comb</a> &nbsp; &nbsp;
<a href="filters/#fifb_fcomb">(fi.)fb_fcomb</a> &nbsp; &nbsp;
<a href="filters/#firev1">(fi.)rev1</a> &nbsp; &nbsp;
<a href="filters/#fifbcombfilter-and-fiffbcombfilter">(fi.)fbcombfilter and (fi.)ffbcombfilter</a> &nbsp; &nbsp;
<a href="filters/#fiallpass_comb">(fi.)allpass_comb</a> &nbsp; &nbsp;
<a href="filters/#fiallpass_fcomb">(fi.)allpass_fcomb</a> &nbsp; &nbsp;
<a href="filters/#firev2">(fi.)rev2</a> &nbsp; &nbsp;
<a href="filters/#fiallpass_fcomb5-and-fiallpass_fcomb1a">(fi.)allpass_fcomb5 and (fi.)allpass_fcomb1a</a> &nbsp; &nbsp;
<a href="filters/#fiiir">(fi.)iir</a> &nbsp; &nbsp;
<a href="filters/#fifir">(fi.)fir</a> &nbsp; &nbsp;
<a href="filters/#ficonv-and-ficonvn">(fi.)conv and (fi.)convN</a> &nbsp; &nbsp;
<a href="filters/#fitf1,-fitf2-and-fitf3">(fi.)tf1, (fi.)tf2 and (fi.)tf3</a> &nbsp; &nbsp;
<a href="filters/#finotchw">(fi.)notchw</a> &nbsp; &nbsp;
<a href="filters/#fitf21,-fitf22,-fitf22t-and-fitf21t">(fi.)tf21, (fi.)tf22, (fi.)tf22t and (fi.)tf21t</a> &nbsp; &nbsp;
<a href="filters/#fiav2sv">(fi.)av2sv</a> &nbsp; &nbsp;
<a href="filters/#fibvav2nuv">(fi.)bvav2nuv</a> &nbsp; &nbsp;
<a href="filters/#fiiir_lat2">(fi.)iir_lat2</a> &nbsp; &nbsp;
<a href="filters/#fiallpassnt">(fi.)allpassnt</a> &nbsp; &nbsp;
<a href="filters/#fiiir_kl">(fi.)iir_kl</a> &nbsp; &nbsp;
<a href="filters/#fiallpassnklt">(fi.)allpassnklt</a> &nbsp; &nbsp;
<a href="filters/#fiiir_lat1">(fi.)iir_lat1</a> &nbsp; &nbsp;
<a href="filters/#fiallpassn1mt">(fi.)allpassn1mt</a> &nbsp; &nbsp;
<a href="filters/#fiiir_nl">(fi.)iir_nl</a> &nbsp; &nbsp;
<a href="filters/#fiallpassnnlt">(fi.)allpassnnlt</a> &nbsp; &nbsp;
<a href="filters/#fitf2np">(fi.)tf2np</a> &nbsp; &nbsp;
<a href="filters/#fiwgr">(fi.)wgr</a> &nbsp; &nbsp;
<a href="filters/#finlf2">(fi.)nlf2</a> &nbsp; &nbsp;
<a href="filters/#fiapnl">(fi.)apnl</a> &nbsp; &nbsp;
<a href="filters/#fiallpassn">(fi.)allpassn</a> &nbsp; &nbsp;
<a href="filters/#fiallpassnn">(fi.)allpassnn</a> &nbsp; &nbsp;
<a href="filters/#fiallpasskl">(fi.)allpasskl</a> &nbsp; &nbsp;
<a href="filters/#fiallpass1m">(fi.)allpass1m</a> &nbsp; &nbsp;
<a href="filters/#fitf2s-and-fitf2snp">(fi.)tf2s and (fi.)tf2snp</a> &nbsp; &nbsp;
<a href="filters/#fitf3slf">(fi.)tf3slf</a> &nbsp; &nbsp;
<a href="filters/#fitf1s">(fi.)tf1s</a> &nbsp; &nbsp;
<a href="filters/#fitf2sb">(fi.)tf2sb</a> &nbsp; &nbsp;
<a href="filters/#fitf1sb">(fi.)tf1sb</a> &nbsp; &nbsp;
<a href="filters/#firesonlp">(fi.)resonlp</a> &nbsp; &nbsp;
<a href="filters/#firesonhp">(fi.)resonhp</a> &nbsp; &nbsp;
<a href="filters/#firesonbp">(fi.)resonbp</a> &nbsp; &nbsp;
<a href="filters/#filowpass">(fi.)lowpass</a> &nbsp; &nbsp;
<a href="filters/#fihighpass">(fi.)highpass</a> &nbsp; &nbsp;
<a href="filters/#filowpass0_highpass1">(fi.)lowpass0_highpass1</a> &nbsp; &nbsp;
<a href="filters/#filowpass_plusminus_highpass">(fi.)lowpass_plus|minus_highpass</a> &nbsp; &nbsp;
<a href="filters/#filowpass3e">(fi.)lowpass3e</a> &nbsp; &nbsp;
<a href="filters/#filowpass6e">(fi.)lowpass6e</a> &nbsp; &nbsp;
<a href="filters/#fihighpass3e">(fi.)highpass3e</a> &nbsp; &nbsp;
<a href="filters/#fihighpass6e">(fi.)highpass6e</a> &nbsp; &nbsp;
<a href="filters/#fibandpass">(fi.)bandpass</a> &nbsp; &nbsp;
<a href="filters/#fibandstop">(fi.)bandstop</a> &nbsp; &nbsp;
<a href="filters/#fibandpass6e">(fi.)bandpass6e</a> &nbsp; &nbsp;
<a href="filters/#fibandpass12e">(fi.)bandpass12e</a> &nbsp; &nbsp;
<a href="filters/#fipospass">(fi.)pospass</a> &nbsp; &nbsp;
<a href="filters/#filow_shelf">(fi.)low_shelf</a> &nbsp; &nbsp;
<a href="filters/#fihigh_shelf">(fi.)high_shelf</a> &nbsp; &nbsp;
<a href="filters/#fipeak_eq">(fi.)peak_eq</a> &nbsp; &nbsp;
<a href="filters/#fipeak_eq_cq">(fi.)peak_eq_cq</a> &nbsp; &nbsp;
<a href="filters/#fipeak_eq_rm">(fi.)peak_eq_rm</a> &nbsp; &nbsp;
<a href="filters/#fispectral_tilt">(fi.)spectral_tilt</a> &nbsp; &nbsp;
<a href="filters/#filevelfilter">(fi.)levelfilter</a> &nbsp; &nbsp;
<a href="filters/#filevelfiltern">(fi.)levelfilterN</a> &nbsp; &nbsp;
<a href="filters/#fimth_octave_filterbankn">(fi.)mth_octave_filterbank[n]</a> &nbsp; &nbsp;
<a href="filters/#fifilterbank">(fi.)filterbank</a> &nbsp; &nbsp;
<a href="filters/#fifilterbanki">(fi.)filterbanki</a> &nbsp; &nbsp;
<a href="filters/#fisvf">(fi.)svf</a> &nbsp; &nbsp;</p>
<h2 id="hoa">hoa</h2>
<p><a href="hoa/#hoencoder">(ho.)encoder</a> &nbsp; &nbsp;
<a href="hoa/#hodecoder">(ho.)decoder</a> &nbsp; &nbsp;
<a href="hoa/#hodecoderstereo">(ho.)decoderStereo</a> &nbsp; &nbsp;
<a href="hoa/#hooptimbasic">(ho.)optimBasic</a> &nbsp; &nbsp;
<a href="hoa/#hooptimmaxre">(ho.)optimMaxRe</a> &nbsp; &nbsp;
<a href="hoa/#hooptiminphase">(ho.)optimInPhase</a> &nbsp; &nbsp;
<a href="hoa/#howider">(ho.)wider</a> &nbsp; &nbsp;
<a href="hoa/#homap">(ho.)map</a> &nbsp; &nbsp;
<a href="hoa/#horotate">(ho.)rotate</a> &nbsp; &nbsp;
<a href="hoa/#hoencoder3d">(ho.)encoder3D</a> &nbsp; &nbsp;
<a href="hoa/#hooptimbasic3d">(ho.)optimBasic3D</a> &nbsp; &nbsp;
<a href="hoa/#hooptimmaxre3d">(ho.)optimMaxRe3D</a> &nbsp; &nbsp;
<a href="hoa/#hooptiminphase3d">(ho.)optimInPhase3D</a> &nbsp; &nbsp;</p>
<h2 id="interpolators">interpolators</h2>
<p><a href="interpolators/#itinterpolate_linear">(it.)interpolate_linear</a> &nbsp; &nbsp;
<a href="interpolators/#itinterpolate_cosine">(it.)interpolate_cosine</a> &nbsp; &nbsp;
<a href="interpolators/#itinterpolate_cubic">(it.)interpolate_cubic</a> &nbsp; &nbsp;
<a href="interpolators/#itinterpolator_two_points">(it.)interpolator_two_points</a> &nbsp; &nbsp;
<a href="interpolators/#itinterpolator_linear">(it.)interpolator_linear</a> &nbsp; &nbsp;
<a href="interpolators/#itinterpolator_cosine">(it.)interpolator_cosine</a> &nbsp; &nbsp;
<a href="interpolators/#itinterpolator_two_points">(it.)interpolator_two_points</a> &nbsp; &nbsp;
<a href="interpolators/#itinterpolator_cubic">(it.)interpolator_cubic</a> &nbsp; &nbsp;
<a href="interpolators/#itinterpolator_select">(it.)interpolator_select</a> &nbsp; &nbsp;</p>
<h2 id="maths">maths</h2>
<p><a href="maths/#masr">(ma.)SR</a> &nbsp; &nbsp;
<a href="maths/#mabs">(ma.)BS</a> &nbsp; &nbsp;
<a href="maths/#mapi">(ma.)PI</a> &nbsp; &nbsp;
<a href="maths/#maepsilon">(ma.)EPSILON</a> &nbsp; &nbsp;
<a href="maths/#mamin">(ma.)MIN</a> &nbsp; &nbsp;
<a href="maths/#mainfinity">(ma.)INFINITY</a> &nbsp; &nbsp;
<a href="maths/#maftz">(ma.)FTZ</a> &nbsp; &nbsp;
<a href="maths/#maneg">(ma.)neg</a> &nbsp; &nbsp;
<a href="maths/#masubx,y">(ma.)sub(x,y)</a> &nbsp; &nbsp;
<a href="maths/#mainv">(ma.)inv</a> &nbsp; &nbsp;
<a href="maths/#macbrt">(ma.)cbrt</a> &nbsp; &nbsp;
<a href="maths/#mahypot">(ma.)hypot</a> &nbsp; &nbsp;
<a href="maths/#maldexp">(ma.)ldexp</a> &nbsp; &nbsp;
<a href="maths/#mascalb">(ma.)scalb</a> &nbsp; &nbsp;
<a href="maths/#malog1p">(ma.)log1p</a> &nbsp; &nbsp;
<a href="maths/#malogb">(ma.)logb</a> &nbsp; &nbsp;
<a href="maths/#mailogb">(ma.)ilogb</a> &nbsp; &nbsp;
<a href="maths/#malog2">(ma.)log2</a> &nbsp; &nbsp;
<a href="maths/#maexpm1">(ma.)expm1</a> &nbsp; &nbsp;
<a href="maths/#maacosh">(ma.)acosh</a> &nbsp; &nbsp;
<a href="maths/#maasinh">(ma.)asinh</a> &nbsp; &nbsp;
<a href="maths/#maatanh">(ma.)atanh</a> &nbsp; &nbsp;
<a href="maths/#masinh">(ma.)sinh</a> &nbsp; &nbsp;
<a href="maths/#macosh">(ma.)cosh</a> &nbsp; &nbsp;
<a href="maths/#matanh">(ma.)tanh</a> &nbsp; &nbsp;
<a href="maths/#maerf">(ma.)erf</a> &nbsp; &nbsp;
<a href="maths/#maerfc">(ma.)erfc</a> &nbsp; &nbsp;
<a href="maths/#magamma">(ma.)gamma</a> &nbsp; &nbsp;
<a href="maths/#malgamma">(ma.)lgamma</a> &nbsp; &nbsp;
<a href="maths/#maj0">(ma.)J0</a> &nbsp; &nbsp;
<a href="maths/#maj1">(ma.)J1</a> &nbsp; &nbsp;
<a href="maths/#majn">(ma.)Jn</a> &nbsp; &nbsp;
<a href="maths/#may0">(ma.)Y0</a> &nbsp; &nbsp;
<a href="maths/#may1">(ma.)Y1</a> &nbsp; &nbsp;
<a href="maths/#mayn">(ma.)Yn</a> &nbsp; &nbsp;
<a href="maths/#mafabs,-mafmax,-mafmin">(ma.)fabs, (ma.)fmax, (ma.)fmin</a> &nbsp; &nbsp;
<a href="maths/#manp2">(ma.)np2</a> &nbsp; &nbsp;
<a href="maths/#mafrac">(ma.)frac</a> &nbsp; &nbsp;
<a href="maths/#mamodulo">(ma.)modulo</a> &nbsp; &nbsp;
<a href="maths/#maisnan">(ma.)isnan</a> &nbsp; &nbsp;
<a href="maths/#maisinf">(ma.)isinf</a> &nbsp; &nbsp;
<a href="maths/#machebychev">(ma.)chebychev</a> &nbsp; &nbsp;
<a href="maths/#machebychevpoly">(ma.)chebychevpoly</a> &nbsp; &nbsp;
<a href="maths/#madiffn">(ma.)diffn</a> &nbsp; &nbsp;
<a href="maths/#masignum">(ma.)signum</a> &nbsp; &nbsp;
<a href="maths/#manextpow2">(ma.)nextpow2</a> &nbsp; &nbsp;
<a href="maths/#mazc">(ma.)zc</a> &nbsp; &nbsp;
<a href="maths/#maavg_rect">(ma.)avg_rect</a> &nbsp; &nbsp;</p>
<h2 id="mi">mi</h2>
<p><a href="mi/#miinitstate">(mi.)initState</a> &nbsp; &nbsp;
<a href="mi/#mimass">(mi.)mass</a> &nbsp; &nbsp;
<a href="mi/#mioscil">(mi.)oscil</a> &nbsp; &nbsp;
<a href="mi/#miground">(mi.)ground</a> &nbsp; &nbsp;
<a href="mi/#miposinput">(mi.)posInput</a> &nbsp; &nbsp;
<a href="mi/#mispring">(mi.)spring</a> &nbsp; &nbsp;
<a href="mi/#midamper">(mi.)damper</a> &nbsp; &nbsp;
<a href="mi/#mispringdamper">(mi.)springDamper</a> &nbsp; &nbsp;
<a href="mi/#minlspringdamper2">(mi.)nlSpringDamper2</a> &nbsp; &nbsp;
<a href="mi/#minlspringdamper3">(mi.)nlSpringDamper3</a> &nbsp; &nbsp;
<a href="mi/#minlspringdamperclipped">(mi.)nlSpringDamperClipped</a> &nbsp; &nbsp;
<a href="mi/#minlpluck">(mi.)nlPluck</a> &nbsp; &nbsp;
<a href="mi/#minlbow">(mi.)nlBow</a> &nbsp; &nbsp;
<a href="mi/#micollision">(mi.)collision</a> &nbsp; &nbsp;
<a href="mi/#minlcollisionclipped">(mi.)nlCollisionClipped</a> &nbsp; &nbsp;</p>
<h2 id="misceffects">misceffects</h2>
<p><a href="misceffects/#efcubicnl">(ef.)cubicnl</a> &nbsp; &nbsp;
<a href="misceffects/#efgate_mono">(ef.)gate_mono</a> &nbsp; &nbsp;
<a href="misceffects/#efgate_stereo">(ef.)gate_stereo</a> &nbsp; &nbsp;
<a href="misceffects/#efspeakerbp">(ef.)speakerbp</a> &nbsp; &nbsp;
<a href="misceffects/#efpiano_dispersion_filter">(ef.)piano_dispersion_filter</a> &nbsp; &nbsp;
<a href="misceffects/#efstereo_width">(ef.)stereo_width</a> &nbsp; &nbsp;
<a href="misceffects/#efmesh_square">(ef.)mesh_square</a> &nbsp; &nbsp;
<a href="misceffects/#efreverseechonnchans,delay">(ef.)reverseEchoN(nChans,delay)</a> &nbsp; &nbsp;
<a href="misceffects/#efreversedelayrampeddelay,phase">(ef.)reverseDelayRamped(delay,phase)</a> &nbsp; &nbsp;
<a href="misceffects/#efuniformpantostereonchans">(ef.)uniformPanToStereo(nChans)</a> &nbsp; &nbsp;
<a href="misceffects/#efecho">(ef.)echo</a> &nbsp; &nbsp;
<a href="misceffects/#eftranspose">(ef.)transpose</a> &nbsp; &nbsp;</p>
<h2 id="oscillators">oscillators</h2>
<p><a href="oscillators/#ossinwaveform">(os.)sinwaveform</a> &nbsp; &nbsp;
<a href="oscillators/#oscoswaveform">(os.)coswaveform</a> &nbsp; &nbsp;
<a href="oscillators/#osphasor">(os.)phasor</a> &nbsp; &nbsp;
<a href="oscillators/#oshs_phasor">(os.)hs_phasor</a> &nbsp; &nbsp;
<a href="oscillators/#oshsp_phasor">(os.)hsp_phasor</a> &nbsp; &nbsp;
<a href="oscillators/#ososcsin">(os.)oscsin</a> &nbsp; &nbsp;
<a href="oscillators/#oshs_oscsin">(os.)hs_oscsin</a> &nbsp; &nbsp;
<a href="oscillators/#ososccos">(os.)osccos</a> &nbsp; &nbsp;
<a href="oscillators/#ososcp">(os.)oscp</a> &nbsp; &nbsp;
<a href="oscillators/#ososci">(os.)osci</a> &nbsp; &nbsp;
<a href="oscillators/#oslf_imptrain">(os.)lf_imptrain</a> &nbsp; &nbsp;
<a href="oscillators/#oslf_pulsetrainpos">(os.)lf_pulsetrainpos</a> &nbsp; &nbsp;
<a href="oscillators/#oslf_pulsetrain">(os.)lf_pulsetrain</a> &nbsp; &nbsp;
<a href="oscillators/#oslf_squarewavepos">(os.)lf_squarewavepos</a> &nbsp; &nbsp;
<a href="oscillators/#oslf_squarewave">(os.)lf_squarewave</a> &nbsp; &nbsp;
<a href="oscillators/#oslf_trianglepos">(os.)lf_trianglepos</a> &nbsp; &nbsp;
<a href="oscillators/#oslf_triangle">(os.)lf_triangle</a> &nbsp; &nbsp;
<a href="oscillators/#oslf_rawsaw">(os.)lf_rawsaw</a> &nbsp; &nbsp;
<a href="oscillators/#oslf_sawpos_phase">(os.)lf_sawpos_phase</a> &nbsp; &nbsp;
<a href="oscillators/#oslf_sawpos">(os.)lf_sawpos</a> &nbsp; &nbsp;
<a href="oscillators/#oslf_sawpos_reset">(os.)lf_sawpos_reset</a> &nbsp; &nbsp;
<a href="oscillators/#oslf_sawpos_phase_reset">(os.)lf_sawpos_phase_reset</a> &nbsp; &nbsp;
<a href="oscillators/#oslf_saw">(os.)lf_saw</a> &nbsp; &nbsp;
<a href="oscillators/#ossawn">(os.)sawN</a> &nbsp; &nbsp;
<a href="oscillators/#ossawnp">(os.)sawNp</a> &nbsp; &nbsp;
<a href="oscillators/#ossaw2dpw">(os.)saw2dpw</a> &nbsp; &nbsp;
<a href="oscillators/#ossaw3">(os.)saw3</a> &nbsp; &nbsp;
<a href="oscillators/#ossawtooth">(os.)sawtooth</a> &nbsp; &nbsp;
<a href="oscillators/#ossaw2f2">(os.)saw2f2</a> &nbsp; &nbsp;
<a href="oscillators/#ossaw2f4">(os.)saw2f4</a> &nbsp; &nbsp;
<a href="oscillators/#ospulsetrainn">(os.)pulsetrainN</a> &nbsp; &nbsp;
<a href="oscillators/#ospulsetrain">(os.)pulsetrain</a> &nbsp; &nbsp;
<a href="oscillators/#ossquaren">(os.)squareN</a> &nbsp; &nbsp;
<a href="oscillators/#ossquare">(os.)square</a> &nbsp; &nbsp;
<a href="oscillators/#osimpulse">(os.)impulse</a> &nbsp; &nbsp;
<a href="oscillators/#osimptrainn">(os.)imptrainN</a> &nbsp; &nbsp;
<a href="oscillators/#osimptrain">(os.)imptrain</a> &nbsp; &nbsp;
<a href="oscillators/#ostrianglen">(os.)triangleN</a> &nbsp; &nbsp;
<a href="oscillators/#ostriangle">(os.)triangle</a> &nbsp; &nbsp;
<a href="oscillators/#ososcb">(os.)oscb</a> &nbsp; &nbsp;
<a href="oscillators/#ososcrq">(os.)oscrq</a> &nbsp; &nbsp;
<a href="oscillators/#ososcrs">(os.)oscrs</a> &nbsp; &nbsp;
<a href="oscillators/#ososcrc">(os.)oscrc</a> &nbsp; &nbsp;
<a href="oscillators/#ososcs">(os.)oscs</a> &nbsp; &nbsp;
<a href="oscillators/#ososc">(os.)osc</a> &nbsp; &nbsp;
<a href="oscillators/#ososcw">(os.)oscw</a> &nbsp; &nbsp;
<a href="oscillators/#ososcws">(os.)oscws</a> &nbsp; &nbsp;
<a href="oscillators/#ososcwq">(os.)oscwq</a> &nbsp; &nbsp;
<a href="oscillators/#ososcw">(os.)oscw</a> &nbsp; &nbsp;
<a href="oscillators/#osczsaw">(os.)CZsaw</a> &nbsp; &nbsp;
<a href="oscillators/#osczsawp">(os.)CZsawP</a> &nbsp; &nbsp;
<a href="oscillators/#osczsquare">(os.)CZsquare</a> &nbsp; &nbsp;
<a href="oscillators/#osczsquarep">(os.)CZsquareP</a> &nbsp; &nbsp;
<a href="oscillators/#osczpulse">(os.)CZpulse</a> &nbsp; &nbsp;
<a href="oscillators/#osczpulsep">(os.)CZpulseP</a> &nbsp; &nbsp;
<a href="oscillators/#osczsinepulse">(os.)CZsinePulse</a> &nbsp; &nbsp;
<a href="oscillators/#osczsinepulsep">(os.)CZsinePulseP</a> &nbsp; &nbsp;
<a href="oscillators/#osczhalfsine">(os.)CZhalfSine</a> &nbsp; &nbsp;
<a href="oscillators/#osczhalfsinep">(os.)CZhalfSineP</a> &nbsp; &nbsp;
<a href="oscillators/#osczressaw">(os.)CZresSaw</a> &nbsp; &nbsp;
<a href="oscillators/#osczrestriangle">(os.)CZresTriangle</a> &nbsp; &nbsp;
<a href="oscillators/#osczrestrap">(os.)CZresTrap</a> &nbsp; &nbsp;
<a href="oscillators/#ospolyblep">(os.)polyblep</a> &nbsp; &nbsp;
<a href="oscillators/#ospolyblep_saw">(os.)polyblep_saw</a> &nbsp; &nbsp;
<a href="oscillators/#ospolyblep_square">(os.)polyblep_square</a> &nbsp; &nbsp;
<a href="oscillators/#ospolyblep_triangle">(os.)polyblep_triangle</a> &nbsp; &nbsp;
<a href="oscillators/#osquadosc">(os.)quadosc</a> &nbsp; &nbsp;</p>
<h2 id="noises">noises</h2>
<p><a href="noises/#nonoise">(no.)noise</a> &nbsp; &nbsp;
<a href="noises/#nomultirandom">(no.)multirandom</a> &nbsp; &nbsp;
<a href="noises/#nomultinoise">(no.)multinoise</a> &nbsp; &nbsp;
<a href="noises/#nonoises">(no.)noises</a> &nbsp; &nbsp;
<a href="noises/#nopink_noise">(no.)pink_noise</a> &nbsp; &nbsp;
<a href="noises/#nopink_noise_vm">(no.)pink_noise_vm</a> &nbsp; &nbsp;
<a href="noises/#nolfnoise,-nolfnoise0-and-nolfnoisen">(no.)lfnoise, (no.)lfnoise0 and (no.)lfnoiseN</a> &nbsp; &nbsp;
<a href="noises/#nosparse_noise_vm">(no.)sparse_noise_vm</a> &nbsp; &nbsp;
<a href="noises/#novelvet_noise_vm">(no.)velvet_noise_vm</a> &nbsp; &nbsp;
<a href="noises/#nognoise">(no.)gnoise</a> &nbsp; &nbsp;</p>
<h2 id="phaflangers">phaflangers</h2>
<p><a href="phaflangers/#pfflanger_mono">(pf.)flanger_mono</a> &nbsp; &nbsp;
<a href="phaflangers/#pfflanger_stereo">(pf.)flanger_stereo</a> &nbsp; &nbsp;
<a href="phaflangers/#pfphaser2_mono">(pf.)phaser2_mono</a> &nbsp; &nbsp;
<a href="phaflangers/#pfphaser2_stereo">(pf.)phaser2_stereo</a> &nbsp; &nbsp;</p>
<h2 id="physmodels">physmodels</h2>
<p><a href="physmodels/#pmspeedofsound">(pm.)speedOfSound</a> &nbsp; &nbsp;
<a href="physmodels/#pmmaxlength">(pm.)maxLength</a> &nbsp; &nbsp;
<a href="physmodels/#pmf2l">(pm.)f2l</a> &nbsp; &nbsp;
<a href="physmodels/#pml2f">(pm.)l2f</a> &nbsp; &nbsp;
<a href="physmodels/#pml2s">(pm.)l2s</a> &nbsp; &nbsp;
<a href="physmodels/#pmbasicblock">(pm.)basicBlock</a> &nbsp; &nbsp;
<a href="physmodels/#pmchain">(pm.)chain</a> &nbsp; &nbsp;
<a href="physmodels/#pminleftwave">(pm.)inLeftWave</a> &nbsp; &nbsp;
<a href="physmodels/#pminrightwave">(pm.)inRightWave</a> &nbsp; &nbsp;
<a href="physmodels/#pmin">(pm.)in</a> &nbsp; &nbsp;
<a href="physmodels/#pmoutleftwave">(pm.)outLeftWave</a> &nbsp; &nbsp;
<a href="physmodels/#pmoutrightwave">(pm.)outRightWave</a> &nbsp; &nbsp;
<a href="physmodels/#pmout">(pm.)out</a> &nbsp; &nbsp;
<a href="physmodels/#pmterminations">(pm.)terminations</a> &nbsp; &nbsp;
<a href="physmodels/#pmltermination">(pm.)lTermination</a> &nbsp; &nbsp;
<a href="physmodels/#pmrtermination">(pm.)rTermination</a> &nbsp; &nbsp;
<a href="physmodels/#pmcloseins">(pm.)closeIns</a> &nbsp; &nbsp;
<a href="physmodels/#pmcloseouts">(pm.)closeOuts</a> &nbsp; &nbsp;
<a href="physmodels/#pmendchain">(pm.)endChain</a> &nbsp; &nbsp;
<a href="physmodels/#pmwaveguiden">(pm.)waveguideN</a> &nbsp; &nbsp;
<a href="physmodels/#pmwaveguide">(pm.)waveguide</a> &nbsp; &nbsp;
<a href="physmodels/#pmbridgefilter">(pm.)bridgeFilter</a> &nbsp; &nbsp;
<a href="physmodels/#pmmodefilter">(pm.)modeFilter</a> &nbsp; &nbsp;
<a href="physmodels/#pmstringsegment">(pm.)stringSegment</a> &nbsp; &nbsp;
<a href="physmodels/#pmopenstring">(pm.)openString</a> &nbsp; &nbsp;
<a href="physmodels/#pmnylonstring">(pm.)nylonString</a> &nbsp; &nbsp;
<a href="physmodels/#pmsteelstring">(pm.)steelString</a> &nbsp; &nbsp;
<a href="physmodels/#pmopenstringpick">(pm.)openStringPick</a> &nbsp; &nbsp;
<a href="physmodels/#pmopenstringpickup">(pm.)openStringPickUp</a> &nbsp; &nbsp;
<a href="physmodels/#pmopenstringpickdown">(pm.)openStringPickDown</a> &nbsp; &nbsp;
<a href="physmodels/#pmksreflexionfilter">(pm.)ksReflexionFilter</a> &nbsp; &nbsp;
<a href="physmodels/#pmrstringrigidtermination">(pm.)rStringRigidTermination</a> &nbsp; &nbsp;
<a href="physmodels/#pmlstringrigidtermination">(pm.)lStringRigidTermination</a> &nbsp; &nbsp;
<a href="physmodels/#pmelecguitarbridge">(pm.)elecGuitarBridge</a> &nbsp; &nbsp;
<a href="physmodels/#pmelecguitarnuts">(pm.)elecGuitarNuts</a> &nbsp; &nbsp;
<a href="physmodels/#pmguitarbridge">(pm.)guitarBridge</a> &nbsp; &nbsp;
<a href="physmodels/#pmguitarnuts">(pm.)guitarNuts</a> &nbsp; &nbsp;
<a href="physmodels/#pmidealstring">(pm.)idealString</a> &nbsp; &nbsp;
<a href="physmodels/#pmks">(pm.)ks</a> &nbsp; &nbsp;
<a href="physmodels/#pmks_ui_midi">(pm.)ks_ui_MIDI</a> &nbsp; &nbsp;
<a href="physmodels/#pmelecguitarmodel">(pm.)elecGuitarModel</a> &nbsp; &nbsp;
<a href="physmodels/#pmelecguitar">(pm.)elecGuitar</a> &nbsp; &nbsp;
<a href="physmodels/#pmelecguitar_ui_midi">(pm.)elecGuitar_ui_MIDI</a> &nbsp; &nbsp;
<a href="physmodels/#pmguitarbody">(pm.)guitarBody</a> &nbsp; &nbsp;
<a href="physmodels/#pmguitarmodel">(pm.)guitarModel</a> &nbsp; &nbsp;
<a href="physmodels/#pmguitar">(pm.)guitar</a> &nbsp; &nbsp;
<a href="physmodels/#pmguitar_ui_midi">(pm.)guitar_ui_MIDI</a> &nbsp; &nbsp;
<a href="physmodels/#pmnylonguitarmodel">(pm.)nylonGuitarModel</a> &nbsp; &nbsp;
<a href="physmodels/#pmnylonguitar">(pm.)nylonGuitar</a> &nbsp; &nbsp;
<a href="physmodels/#pmnylonguitar_ui_midi">(pm.)nylonGuitar_ui_MIDI</a> &nbsp; &nbsp;
<a href="physmodels/#pmmodeinterpres">(pm.)modeInterpRes</a> &nbsp; &nbsp;
<a href="physmodels/#pmmodularinterpbody">(pm.)modularInterpBody</a> &nbsp; &nbsp;
<a href="physmodels/#pmmodularinterpstringmodel">(pm.)modularInterpStringModel</a> &nbsp; &nbsp;
<a href="physmodels/#pmmodularinterpinstr">(pm.)modularInterpInstr</a> &nbsp; &nbsp;
<a href="physmodels/#pmmodularinterpinstr_ui_midi">(pm.)modularInterpInstr_ui_MIDI</a> &nbsp; &nbsp;
<a href="physmodels/#pmbowtable">(pm.)bowTable</a> &nbsp; &nbsp;
<a href="physmodels/#pmviolinbowtable">(pm.)violinBowTable</a> &nbsp; &nbsp;
<a href="physmodels/#pmbowinteraction">(pm.)bowInteraction</a> &nbsp; &nbsp;
<a href="physmodels/#pmviolinbow">(pm.)violinBow</a> &nbsp; &nbsp;
<a href="physmodels/#pmviolinbowedstring">(pm.)violinBowedString</a> &nbsp; &nbsp;
<a href="physmodels/#pmviolinnuts">(pm.)violinNuts</a> &nbsp; &nbsp;
<a href="physmodels/#pmviolinbridge">(pm.)violinBridge</a> &nbsp; &nbsp;
<a href="physmodels/#pmviolinbody">(pm.)violinBody</a> &nbsp; &nbsp;
<a href="physmodels/#pmviolinmodel">(pm.)violinModel</a> &nbsp; &nbsp;
<a href="physmodels/#pmviolin_ui">(pm.)violin_ui</a> &nbsp; &nbsp;
<a href="physmodels/#pmviolin_ui_midi">(pm.)violin_ui_MIDI</a> &nbsp; &nbsp;
<a href="physmodels/#pmopentube">(pm.)openTube</a> &nbsp; &nbsp;
<a href="physmodels/#pmreedtable">(pm.)reedTable</a> &nbsp; &nbsp;
<a href="physmodels/#pmflutejettable">(pm.)fluteJetTable</a> &nbsp; &nbsp;
<a href="physmodels/#pmbrasslipstable">(pm.)brassLipsTable</a> &nbsp; &nbsp;
<a href="physmodels/#pmclarinetreed">(pm.)clarinetReed</a> &nbsp; &nbsp;
<a href="physmodels/#pmclarinetmouthpiece">(pm.)clarinetMouthPiece</a> &nbsp; &nbsp;
<a href="physmodels/#pmbrasslips">(pm.)brassLips</a> &nbsp; &nbsp;
<a href="physmodels/#pmfluteembouchure">(pm.)fluteEmbouchure</a> &nbsp; &nbsp;
<a href="physmodels/#pmwbell">(pm.)wBell</a> &nbsp; &nbsp;
<a href="physmodels/#pmflutehead">(pm.)fluteHead</a> &nbsp; &nbsp;
<a href="physmodels/#pmflutefoot">(pm.)fluteFoot</a> &nbsp; &nbsp;
<a href="physmodels/#pmclarinetmodel">(pm.)clarinetModel</a> &nbsp; &nbsp;
<a href="physmodels/#pmclarinetmodel_ui">(pm.)clarinetModel_ui</a> &nbsp; &nbsp;
<a href="physmodels/#pmclarinet_ui">(pm.)clarinet_ui</a> &nbsp; &nbsp;
<a href="physmodels/#pmclarinet_ui_midi">(pm.)clarinet_ui_MIDI</a> &nbsp; &nbsp;
<a href="physmodels/#pmbrassmodel">(pm.)brassModel</a> &nbsp; &nbsp;
<a href="physmodels/#pmbrassmodel_ui">(pm.)brassModel_ui</a> &nbsp; &nbsp;
<a href="physmodels/#pmbrass_ui">(pm.)brass_ui</a> &nbsp; &nbsp;
<a href="physmodels/#pmbrass_ui_midi">(pm.)brass_ui_MIDI</a> &nbsp; &nbsp;
<a href="physmodels/#pmflutemodel">(pm.)fluteModel</a> &nbsp; &nbsp;
<a href="physmodels/#pmflutemodel_ui">(pm.)fluteModel_ui</a> &nbsp; &nbsp;
<a href="physmodels/#pmflute_ui">(pm.)flute_ui</a> &nbsp; &nbsp;
<a href="physmodels/#pmflute_ui_midi">(pm.)flute_ui_MIDI</a> &nbsp; &nbsp;
<a href="physmodels/#pmimpulseexcitation">(pm.)impulseExcitation</a> &nbsp; &nbsp;
<a href="physmodels/#pmstrikemodel">(pm.)strikeModel</a> &nbsp; &nbsp;
<a href="physmodels/#pmstrike">(pm.)strike</a> &nbsp; &nbsp;
<a href="physmodels/#pmpluckstring">(pm.)pluckString</a> &nbsp; &nbsp;
<a href="physmodels/#pmblower">(pm.)blower</a> &nbsp; &nbsp;
<a href="physmodels/#pmblower_ui">(pm.)blower_ui</a> &nbsp; &nbsp;
<a href="physmodels/#pmdjembemodel">(pm.)djembeModel</a> &nbsp; &nbsp;
<a href="physmodels/#pmdjembe">(pm.)djembe</a> &nbsp; &nbsp;
<a href="physmodels/#pmdjembe_ui_midi">(pm.)djembe_ui_MIDI</a> &nbsp; &nbsp;
<a href="physmodels/#pmmarimbabarmodel">(pm.)marimbaBarModel</a> &nbsp; &nbsp;
<a href="physmodels/#pmmarimbarestube">(pm.)marimbaResTube</a> &nbsp; &nbsp;
<a href="physmodels/#pmmarimbamodel">(pm.)marimbaModel</a> &nbsp; &nbsp;
<a href="physmodels/#pmmarimba">(pm.)marimba</a> &nbsp; &nbsp;
<a href="physmodels/#pmmarimba_ui_midi">(pm.)marimba_ui_MIDI</a> &nbsp; &nbsp;
<a href="physmodels/#pmchurchbellmodel">(pm.)churchBellModel</a> &nbsp; &nbsp;
<a href="physmodels/#pmchurchbell">(pm.)churchBell</a> &nbsp; &nbsp;
<a href="physmodels/#pmchurchbell_ui">(pm.)churchBell_ui</a> &nbsp; &nbsp;
<a href="physmodels/#pmenglishbellmodel">(pm.)englishBellModel</a> &nbsp; &nbsp;
<a href="physmodels/#pmenglishbell">(pm.)englishBell</a> &nbsp; &nbsp;
<a href="physmodels/#pmenglishbell_ui">(pm.)englishBell_ui</a> &nbsp; &nbsp;
<a href="physmodels/#pmfrenchbellmodel">(pm.)frenchBellModel</a> &nbsp; &nbsp;
<a href="physmodels/#pmfrenchbell">(pm.)frenchBell</a> &nbsp; &nbsp;
<a href="physmodels/#pmfrenchbell_ui">(pm.)frenchBell_ui</a> &nbsp; &nbsp;
<a href="physmodels/#pmgermanbellmodel">(pm.)germanBellModel</a> &nbsp; &nbsp;
<a href="physmodels/#pmgermanbell">(pm.)germanBell</a> &nbsp; &nbsp;
<a href="physmodels/#pmgermanbell_ui">(pm.)germanBell_ui</a> &nbsp; &nbsp;
<a href="physmodels/#pmrussianbellmodel">(pm.)russianBellModel</a> &nbsp; &nbsp;
<a href="physmodels/#pmrussianbell">(pm.)russianBell</a> &nbsp; &nbsp;
<a href="physmodels/#pmrussianbell_ui">(pm.)russianBell_ui</a> &nbsp; &nbsp;
<a href="physmodels/#pmstandardbellmodel">(pm.)standardBellModel</a> &nbsp; &nbsp;
<a href="physmodels/#pmstandardbell">(pm.)standardBell</a> &nbsp; &nbsp;
<a href="physmodels/#pmstandardbell_ui">(pm.)standardBell_ui</a> &nbsp; &nbsp;
<a href="physmodels/#pmformantvalues">(pm.)formantValues</a> &nbsp; &nbsp;
<a href="physmodels/#pmvoicegender">(pm.)voiceGender</a> &nbsp; &nbsp;
<a href="physmodels/#pmskirtwidthmultiplier">(pm.)skirtWidthMultiplier</a> &nbsp; &nbsp;
<a href="physmodels/#pmautobendfreq">(pm.)autobendFreq</a> &nbsp; &nbsp;
<a href="physmodels/#pmvocaleffort">(pm.)vocalEffort</a> &nbsp; &nbsp;
<a href="physmodels/#pmfof">(pm.)fof</a> &nbsp; &nbsp;
<a href="physmodels/#pmfofsh">(pm.)fofSH</a> &nbsp; &nbsp;
<a href="physmodels/#pmfofcycle">(pm.)fofCycle</a> &nbsp; &nbsp;
<a href="physmodels/#pmfofsmooth">(pm.)fofSmooth</a> &nbsp; &nbsp;
<a href="physmodels/#pmformantfilterfofcycle">(pm.)formantFilterFofCycle</a> &nbsp; &nbsp;
<a href="physmodels/#pmformantfilterfofsmooth">(pm.)formantFilterFofSmooth</a> &nbsp; &nbsp;
<a href="physmodels/#pmformantfilterbp">(pm.)formantFilterBP</a> &nbsp; &nbsp;
<a href="physmodels/#pmformantfilterbank">(pm.)formantFilterbank</a> &nbsp; &nbsp;
<a href="physmodels/#pmformantfilterbankfofcycle">(pm.)formantFilterbankFofCycle</a> &nbsp; &nbsp;
<a href="physmodels/#pmformantfilterbankfofsmooth">(pm.)formantFilterbankFofSmooth</a> &nbsp; &nbsp;
<a href="physmodels/#pmformantfilterbankbp">(pm.)formantFilterbankBP</a> &nbsp; &nbsp;
<a href="physmodels/#pmsfformantmodel">(pm.)SFFormantModel</a> &nbsp; &nbsp;
<a href="physmodels/#pmsfformantmodelfofcycle">(pm.)SFFormantModelFofCycle</a> &nbsp; &nbsp;
<a href="physmodels/#pmsfformantmodelfofsmooth">(pm.)SFFormantModelFofSmooth</a> &nbsp; &nbsp;
<a href="physmodels/#pmsfformantmodelbp">(pm.)SFFormantModelBP</a> &nbsp; &nbsp;
<a href="physmodels/#pmsfformantmodelfofcycle_ui">(pm.)SFFormantModelFofCycle_ui</a> &nbsp; &nbsp;
<a href="physmodels/#pmsfformantmodelfofsmooth_ui">(pm.)SFFormantModelFofSmooth_ui</a> &nbsp; &nbsp;
<a href="physmodels/#pmsfformantmodelbp_ui">(pm.)SFFormantModelBP_ui</a> &nbsp; &nbsp;
<a href="physmodels/#pmsfformantmodelfofcycle_ui_midi">(pm.)SFFormantModelFofCycle_ui_MIDI</a> &nbsp; &nbsp;
<a href="physmodels/#pmsfformantmodelfofsmooth_ui_midi">(pm.)SFFormantModelFofSmooth_ui_MIDI</a> &nbsp; &nbsp;
<a href="physmodels/#pmsfformantmodelbp_ui_midi">(pm.)SFFormantModelBP_ui_MIDI</a> &nbsp; &nbsp;
<a href="physmodels/#pmallpassnl">(pm.)allpassNL</a> &nbsp; &nbsp;</p>
<h2 id="quantizer">quantizer</h2>
<p><a href="quantizer/#ququantize">(qu.)quantize</a> &nbsp; &nbsp;
<a href="quantizer/#ququantizesmoothed">(qu.)quantizeSmoothed</a> &nbsp; &nbsp;
<a href="quantizer/#quionian">(qu.)ionian</a> &nbsp; &nbsp;
<a href="quantizer/#qupentanat">(qu.)pentanat</a> &nbsp; &nbsp;
<a href="quantizer/#qukumoi">(qu.)kumoi</a> &nbsp; &nbsp;
<a href="quantizer/#qunatural">(qu.)natural</a> &nbsp; &nbsp;
<a href="quantizer/#qudodeca">(qu.)dodeca</a> &nbsp; &nbsp;
<a href="quantizer/#qudimin">(qu.)dimin</a> &nbsp; &nbsp;
<a href="quantizer/#qupenta">(qu.)penta</a> &nbsp; &nbsp;
<a href="quantizer/#qudorian">(qu.)dorian</a> &nbsp; &nbsp;</p>
<h2 id="reducemaps">reducemaps</h2>
<p><a href="reducemaps/#rmreduce">(rm.)reduce</a> &nbsp; &nbsp;
<a href="reducemaps/#rmreducemap">(rm.)reducemap</a> &nbsp; &nbsp;</p>
<h2 id="reverbs">reverbs</h2>
<p><a href="reverbs/#rejcrev">(re.)jcrev</a> &nbsp; &nbsp;
<a href="reverbs/#resatrev">(re.)satrev</a> &nbsp; &nbsp;
<a href="reverbs/#refdnrev0">(re.)fdnrev0</a> &nbsp; &nbsp;
<a href="reverbs/#rezita_rev_fdn">(re.)zita_rev_fdn</a> &nbsp; &nbsp;
<a href="reverbs/#rezita_rev1_stereo">(re.)zita_rev1_stereo</a> &nbsp; &nbsp;
<a href="reverbs/#rezita_rev1_ambi">(re.)zita_rev1_ambi</a> &nbsp; &nbsp;
<a href="reverbs/#remono_freeverb">(re.)mono_freeverb</a> &nbsp; &nbsp;
<a href="reverbs/#restereo_freeverb">(re.)stereo_freeverb</a> &nbsp; &nbsp;</p>
<h2 id="routes">routes</h2>
<p><a href="routes/#rocross">(ro.)cross</a> &nbsp; &nbsp;
<a href="routes/#rocrossnn">(ro.)crossnn</a> &nbsp; &nbsp;
<a href="routes/#rocrossn1">(ro.)crossn1</a> &nbsp; &nbsp;
<a href="routes/#rocross1n">(ro.)cross1n</a> &nbsp; &nbsp;
<a href="routes/#rocrossnm">(ro.)crossNM</a> &nbsp; &nbsp;
<a href="routes/#rointerleave">(ro.)interleave</a> &nbsp; &nbsp;
<a href="routes/#robutterfly">(ro.)butterfly</a> &nbsp; &nbsp;
<a href="routes/#rohadamard">(ro.)hadamard</a> &nbsp; &nbsp;
<a href="routes/#rorecursivize">(ro.)recursivize</a> &nbsp; &nbsp;</p>
<h2 id="signals">signals</h2>
<p><a href="signals/#sibus">(si.)bus</a> &nbsp; &nbsp;
<a href="signals/#siblock">(si.)block</a> &nbsp; &nbsp;
<a href="signals/#siinterpolate">(si.)interpolate</a> &nbsp; &nbsp;
<a href="signals/#sismoo">(si.)smoo</a> &nbsp; &nbsp;
<a href="signals/#sipolysmooth">(si.)polySmooth</a> &nbsp; &nbsp;
<a href="signals/#sismoothandh">(si.)smoothAndH</a> &nbsp; &nbsp;
<a href="signals/#sibsmooth">(si.)bsmooth</a> &nbsp; &nbsp;
<a href="signals/#sidot">(si.)dot</a> &nbsp; &nbsp;
<a href="signals/#sismooth">(si.)smooth</a> &nbsp; &nbsp;
<a href="signals/#sicbus">(si.)cbus</a> &nbsp; &nbsp;
<a href="signals/#sicmul">(si.)cmul</a> &nbsp; &nbsp;
<a href="signals/#sicconj">(si.)cconj</a> &nbsp; &nbsp;
<a href="signals/#silag_ud">(si.)lag_ud</a> &nbsp; &nbsp;
<a href="signals/#sirev">(si.)rev</a> &nbsp; &nbsp;</p>
<h2 id="soundfiles">soundfiles</h2>
<p><a href="soundfiles/#soloop">(so.)loop</a> &nbsp; &nbsp;
<a href="soundfiles/#soloop_speed">(so.)loop_speed</a> &nbsp; &nbsp;
<a href="soundfiles/#soloop_speed_level">(so.)loop_speed_level</a> &nbsp; &nbsp;</p>
<h2 id="spats">spats</h2>
<p><a href="spats/#sppanner">(sp.)panner</a> &nbsp; &nbsp;
<a href="spats/#spspat">(sp.)spat</a> &nbsp; &nbsp;
<a href="spats/#spstereoize">(sp.)stereoize</a> &nbsp; &nbsp;</p>
<h2 id="synths">synths</h2>
<p><a href="synths/#sypopfilterperc">(sy.)popFilterPerc</a> &nbsp; &nbsp;
<a href="synths/#sydubdub">(sy.)dubDub</a> &nbsp; &nbsp;
<a href="synths/#sysawtrombone">(sy.)sawTrombone</a> &nbsp; &nbsp;
<a href="synths/#sycombstring">(sy.)combString</a> &nbsp; &nbsp;
<a href="synths/#syadditivedrum">(sy.)additiveDrum</a> &nbsp; &nbsp;
<a href="synths/#syfm">(sy.)fm</a> &nbsp; &nbsp;</p>
<h2 id="vaeffects">vaeffects</h2>
<p><a href="vaeffects/#vemoog_vcf">(ve.)moog_vcf</a> &nbsp; &nbsp;
<a href="vaeffects/#vemoog_vcf_2bn">(ve.)moog_vcf_2b[n]</a> &nbsp; &nbsp;
<a href="vaeffects/#vemoogladder">(ve.)moogLadder</a> &nbsp; &nbsp;
<a href="vaeffects/#vemooghalfladder">(ve.)moogHalfLadder</a> &nbsp; &nbsp;
<a href="vaeffects/#vediodeladder">(ve.)diodeLadder</a> &nbsp; &nbsp;
<a href="vaeffects/#vekorg35lpf">(ve.)korg35LPF</a> &nbsp; &nbsp;
<a href="vaeffects/#vekorg35hpf">(ve.)korg35HPF</a> &nbsp; &nbsp;
<a href="vaeffects/#veoberheim">(ve.)oberheim</a> &nbsp; &nbsp;
<a href="vaeffects/#veoberheimbsf">(ve.)oberheimBSF</a> &nbsp; &nbsp;
<a href="vaeffects/#veoberheimbpf">(ve.)oberheimBPF</a> &nbsp; &nbsp;
<a href="vaeffects/#veoberheimhpf">(ve.)oberheimHPF</a> &nbsp; &nbsp;
<a href="vaeffects/#veoberheimlpf">(ve.)oberheimLPF</a> &nbsp; &nbsp;
<a href="vaeffects/#vesallenkeyonepole">(ve.)sallenKeyOnePole</a> &nbsp; &nbsp;
<a href="vaeffects/#vesallenkeyonepolelpf">(ve.)sallenKeyOnePoleLPF</a> &nbsp; &nbsp;
<a href="vaeffects/#vesallenkeyonepolehpf">(ve.)sallenKeyOnePoleHPF</a> &nbsp; &nbsp;
<a href="vaeffects/#vesallenkey2ndorder">(ve.)sallenKey2ndOrder</a> &nbsp; &nbsp;
<a href="vaeffects/#vesallenkey2ndorderlpf">(ve.)sallenKey2ndOrderLPF</a> &nbsp; &nbsp;
<a href="vaeffects/#vesallenkey2ndorderbpf">(ve.)sallenKey2ndOrderBPF</a> &nbsp; &nbsp;
<a href="vaeffects/#vesallenkey2ndorderhpf">(ve.)sallenKey2ndOrderHPF</a> &nbsp; &nbsp;
<a href="vaeffects/#vewah4">(ve.)wah4</a> &nbsp; &nbsp;
<a href="vaeffects/#veautowah">(ve.)autowah</a> &nbsp; &nbsp;
<a href="vaeffects/#vecrybaby">(ve.)crybaby</a> &nbsp; &nbsp;
<a href="vaeffects/#vevocoder">(ve.)vocoder</a> &nbsp; &nbsp;</p>
<h2 id="wavedigitalfilters">wavedigitalfilters</h2>
<p><a href="wavedigitalfilters/#wdresistor">(wd.)resistor</a> &nbsp; &nbsp;
<a href="wavedigitalfilters/#wdresistor_output">(wd.)resistor_output</a> &nbsp; &nbsp;
<a href="wavedigitalfilters/#wdresistor_output_current">(wd.)resistor_output_current</a> &nbsp; &nbsp;
<a href="wavedigitalfilters/#wdu_voltage">(wd.)u_voltage</a> &nbsp; &nbsp;
<a href="wavedigitalfilters/#wdu_current">(wd.)u_current</a> &nbsp; &nbsp;
<a href="wavedigitalfilters/#wdresvoltage">(wd.)resVoltage</a> &nbsp; &nbsp;
<a href="wavedigitalfilters/#wdresvoltage_output">(wd.)resVoltage_output</a> &nbsp; &nbsp;
<a href="wavedigitalfilters/#wdu_resvoltage">(wd.)u_resVoltage</a> &nbsp; &nbsp;
<a href="wavedigitalfilters/#wdrescurrent">(wd.)resCurrent</a> &nbsp; &nbsp;
<a href="wavedigitalfilters/#wdu_rescurrent">(wd.)u_resCurrent</a> &nbsp; &nbsp;
<a href="wavedigitalfilters/#wdu_switch">(wd.)u_switch</a> &nbsp; &nbsp;
<a href="wavedigitalfilters/#wdcapacitor">(wd.)capacitor</a> &nbsp; &nbsp;
<a href="wavedigitalfilters/#wdcapacitor_output">(wd.)capacitor_output</a> &nbsp; &nbsp;
<a href="wavedigitalfilters/#wdinductor">(wd.)inductor</a> &nbsp; &nbsp;
<a href="wavedigitalfilters/#wdinductor_output">(wd.)inductor_output</a> &nbsp; &nbsp;
<a href="wavedigitalfilters/#wdu_idealdiode">(wd.)u_idealDiode</a> &nbsp; &nbsp;
<a href="wavedigitalfilters/#wdu_chua">(wd.)u_chua</a> &nbsp; &nbsp;
<a href="wavedigitalfilters/#wdlambert">(wd.)lambert</a> &nbsp; &nbsp;
<a href="wavedigitalfilters/#wdu_diodepair">(wd.)u_diodePair</a> &nbsp; &nbsp;
<a href="wavedigitalfilters/#wdu_diodesingle">(wd.)u_diodeSingle</a> &nbsp; &nbsp;
<a href="wavedigitalfilters/#wdu_diodeantiparallel">(wd.)u_diodeAntiparallel</a> &nbsp; &nbsp;
<a href="wavedigitalfilters/#wdu_parallel_2">(wd.)u_parallel_2</a> &nbsp; &nbsp;
<a href="wavedigitalfilters/#wdparallel_2">(wd.)parallel_2</a> &nbsp; &nbsp;
<a href="wavedigitalfilters/#wdu_series_2">(wd.)u_series_2</a> &nbsp; &nbsp;
<a href="wavedigitalfilters/#wdseries_2">(wd.)series_2</a> &nbsp; &nbsp;
<a href="wavedigitalfilters/#wdparallel_current">(wd.)parallel_current</a> &nbsp; &nbsp;
<a href="wavedigitalfilters/#wdseries_voltage">(wd.)series_voltage</a> &nbsp; &nbsp;
<a href="wavedigitalfilters/#wdparallel">(wd.)parallel</a> &nbsp; &nbsp;
<a href="wavedigitalfilters/#wdseries">(wd.)series</a> &nbsp; &nbsp;
<a href="wavedigitalfilters/#wdbuilddown">(wd.)builddown</a> &nbsp; &nbsp;
<a href="wavedigitalfilters/#wdbuildup">(wd.)buildup</a> &nbsp; &nbsp;
<a href="wavedigitalfilters/#wdgetres">(wd.)getres</a> &nbsp; &nbsp;
<a href="wavedigitalfilters/#wdparres">(wd.)parres</a> &nbsp; &nbsp;
<a href="wavedigitalfilters/#wdbuildout">(wd.)buildout</a> &nbsp; &nbsp;
<a href="wavedigitalfilters/#wdbuildtree">(wd.)buildtree</a> &nbsp; &nbsp;</p>
<h2 id="webaudio">webaudio</h2>
<p><a href="webaudio/#walowpass2">(wa.)lowpass2</a> &nbsp; &nbsp;
<a href="webaudio/#wahighpass2">(wa.)highpass2</a> &nbsp; &nbsp;
<a href="webaudio/#wabandpass2">(wa.)bandpass2</a> &nbsp; &nbsp;
<a href="webaudio/#wanotch2">(wa.)notch2</a> &nbsp; &nbsp;
<a href="webaudio/#waallpass2">(wa.)allpass2</a> &nbsp; &nbsp;
<a href="webaudio/#wapeaking2">(wa.)peaking2</a> &nbsp; &nbsp;
<a href="webaudio/#walowshelf2">(wa.)lowshelf2</a> &nbsp; &nbsp;
<a href="webaudio/#wahighshelf2">(wa.)highshelf2</a> &nbsp; &nbsp;</p></div>
            </div>
        </div>

        <footer class="col-md-12">
            <hr>
                <p>Copyright &copy; 2019-2020 <a href="https://www.grame.fr">Grame-CNCM</a></p>
        </footer>
        <script>
            var base_url = "..",
                shortcuts = {"help": 191, "next": 78, "previous": 80, "search": 83};
        </script>
        <script src="../js/base.js" defer></script>
        <script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS-MML_HTMLorMML" defer></script>
        <script src="../search/main.js" defer></script>

        <div class="modal" id="mkdocs_search_modal" tabindex="-1" role="dialog" aria-labelledby="searchModalLabel" aria-hidden="true">
    <div class="modal-dialog modal-lg">
        <div class="modal-content">
            <div class="modal-header">
                <h4 class="modal-title" id="searchModalLabel">Search</h4>
                <button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">&times;</span><span class="sr-only">Close</span></button>
            </div>
            <div class="modal-body">
                <p>
                    From here you can search these documents. Enter
                    your search terms below.
                </p>
                <form>
                    <div class="form-group">
                        <input type="text" class="form-control" placeholder="Search..." id="mkdocs-search-query" title="Type search term here">
                    </div>
                </form>
                <div id="mkdocs-search-results"></div>
            </div>
            <div class="modal-footer">
            </div>
        </div>
    </div>
</div><div class="modal" id="mkdocs_keyboard_modal" tabindex="-1" role="dialog" aria-labelledby="keyboardModalLabel" aria-hidden="true">
    <div class="modal-dialog">
        <div class="modal-content">
            <div class="modal-header">
                <h4 class="modal-title" id="keyboardModalLabel">Keyboard Shortcuts</h4>
                <button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">&times;</span><span class="sr-only">Close</span></button>
            </div>
            <div class="modal-body">
              <table class="table">
                <thead>
                  <tr>
                    <th style="width: 20%;">Keys</th>
                    <th>Action</th>
                  </tr>
                </thead>
                <tbody>
                  <tr>
                    <td class="help shortcut"><kbd>?</kbd></td>
                    <td>Open this help</td>
                  </tr>
                  <tr>
                    <td class="next shortcut"><kbd>n</kbd></td>
                    <td>Next page</td>
                  </tr>
                  <tr>
                    <td class="prev shortcut"><kbd>p</kbd></td>
                    <td>Previous page</td>
                  </tr>
                  <tr>
                    <td class="search shortcut"><kbd>s</kbd></td>
                    <td>Search</td>
                  </tr>
                </tbody>
              </table>
            </div>
            <div class="modal-footer">
            </div>
        </div>
    </div>
</div>

    </body>
</html>