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
|
<!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> vaeffects - 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="/usr/share/javascript/highlight.js/styles/github.css">
<link href="../../css/extra.css" rel="stylesheet">
<script src="../../js/jquery-3.6.0.min.js" defer></script>
<script src="../../js/bootstrap.min.js" defer></script>
<script src="/usr/share/javascript/highlight.js/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"> </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="../../community/" class="dropdown-item"> Community </a>
</li>
<li>
<a href="../../about/" class="dropdown-item"> Copyright/License </a>
</li>
</ul>
</li>
<li class="navitem">
<a href="../" class="nav-link">Index</a>
</li>
<li class="dropdown active">
<a href="#" class="nav-link dropdown-toggle" data-toggle="dropdown">Libraries <b class="caret"></b></a>
<ul class="dropdown-menu">
<li>
<a href="../aanl/" class="dropdown-item"> antialiased </a>
</li>
<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/dx7/" class="dropdown-item"> dx7/dx7 </a>
</li>
<li>
<a href="../dx7/env/" class="dropdown-item"> dx7/env </a>
</li>
<li>
<a href="../dx7/lfo/" class="dropdown-item"> dx7/lfo </a>
</li>
<li>
<a href="../dx7/operator/" class="dropdown-item"> dx7/operator </a>
</li>
<li>
<a href="../dx7/pitchenv/" class="dropdown-item"> dx7/pitchenv </a>
</li>
<li>
<a href="../envelopes/" class="dropdown-item"> envelopes </a>
</li>
<li>
<a href="../fds/" class="dropdown-item"> fds </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="../linearalgebra/" class="dropdown-item"> linearalgebra </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="../noises/" class="dropdown-item"> noises </a>
</li>
<li>
<a href="../oscillators/" class="dropdown-item"> oscillators </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="../quantizers/" class="dropdown-item"> quantizers </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="./" class="dropdown-item active"> vaeffects </a>
</li>
<li>
<a href="../version/" class="dropdown-item"> version </a>
</li>
<li>
<a href="../wdmodels/" class="dropdown-item"> wdmodels </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="#vaeffectslib" class="nav-link">vaeffects.lib</a>
<ul class="nav flex-column">
<li class="nav-item" data-level="2"><a href="#moog-filters" class="nav-link">Moog Filters</a>
<ul class="nav flex-column">
<li class="nav-item" data-level="3"><a href="#vemoog_vcf" class="nav-link">(ve.)moog_vcf</a>
<ul class="nav flex-column">
</ul>
</li>
<li class="nav-item" data-level="3"><a href="#vemoog_vcf_2bn" class="nav-link">(ve.)moog_vcf_2b[n]</a>
<ul class="nav flex-column">
</ul>
</li>
<li class="nav-item" data-level="3"><a href="#vemoogladder" class="nav-link">(ve.)moogLadder</a>
<ul class="nav flex-column">
</ul>
</li>
<li class="nav-item" data-level="3"><a href="#velowpassladder4" class="nav-link">(ve.)lowpassLadder4</a>
<ul class="nav flex-column">
</ul>
</li>
<li class="nav-item" data-level="3"><a href="#vemooghalfladder" class="nav-link">(ve.)moogHalfLadder</a>
<ul class="nav flex-column">
</ul>
</li>
<li class="nav-item" data-level="3"><a href="#vediodeladder" class="nav-link">(ve.)diodeLadder</a>
<ul class="nav flex-column">
</ul>
</li>
</ul>
</li>
<li class="nav-item" data-level="2"><a href="#korg-35-filters" class="nav-link">Korg 35 Filters</a>
<ul class="nav flex-column">
<li class="nav-item" data-level="3"><a href="#vekorg35lpf" class="nav-link">(ve.)korg35LPF</a>
<ul class="nav flex-column">
</ul>
</li>
<li class="nav-item" data-level="3"><a href="#vekorg35hpf" class="nav-link">(ve.)korg35HPF</a>
<ul class="nav flex-column">
</ul>
</li>
</ul>
</li>
<li class="nav-item" data-level="2"><a href="#oberheim-filters" class="nav-link">Oberheim Filters</a>
<ul class="nav flex-column">
<li class="nav-item" data-level="3"><a href="#veoberheim" class="nav-link">(ve.)oberheim</a>
<ul class="nav flex-column">
</ul>
</li>
<li class="nav-item" data-level="3"><a href="#veoberheimbsf" class="nav-link">(ve.)oberheimBSF</a>
<ul class="nav flex-column">
</ul>
</li>
<li class="nav-item" data-level="3"><a href="#veoberheimbpf" class="nav-link">(ve.)oberheimBPF</a>
<ul class="nav flex-column">
</ul>
</li>
<li class="nav-item" data-level="3"><a href="#veoberheimhpf" class="nav-link">(ve.)oberheimHPF</a>
<ul class="nav flex-column">
</ul>
</li>
<li class="nav-item" data-level="3"><a href="#veoberheimlpf" class="nav-link">(ve.)oberheimLPF</a>
<ul class="nav flex-column">
</ul>
</li>
</ul>
</li>
<li class="nav-item" data-level="2"><a href="#sallen-key-filters" class="nav-link">Sallen Key Filters</a>
<ul class="nav flex-column">
<li class="nav-item" data-level="3"><a href="#vesallenkeyonepole" class="nav-link">(ve.)sallenKeyOnePole</a>
<ul class="nav flex-column">
</ul>
</li>
<li class="nav-item" data-level="3"><a href="#vesallenkeyonepolelpf" class="nav-link">(ve.)sallenKeyOnePoleLPF</a>
<ul class="nav flex-column">
</ul>
</li>
<li class="nav-item" data-level="3"><a href="#vesallenkeyonepolehpf" class="nav-link">(ve.)sallenKeyOnePoleHPF</a>
<ul class="nav flex-column">
</ul>
</li>
<li class="nav-item" data-level="3"><a href="#vesallenkey2ndorder" class="nav-link">(ve.)sallenKey2ndOrder</a>
<ul class="nav flex-column">
</ul>
</li>
<li class="nav-item" data-level="3"><a href="#vesallenkey2ndorderlpf" class="nav-link">(ve.)sallenKey2ndOrderLPF</a>
<ul class="nav flex-column">
</ul>
</li>
<li class="nav-item" data-level="3"><a href="#vesallenkey2ndorderbpf" class="nav-link">(ve.)sallenKey2ndOrderBPF</a>
<ul class="nav flex-column">
</ul>
</li>
<li class="nav-item" data-level="3"><a href="#vesallenkey2ndorderhpf" class="nav-link">(ve.)sallenKey2ndOrderHPF</a>
<ul class="nav flex-column">
</ul>
</li>
</ul>
</li>
<li class="nav-item" data-level="2"><a href="#vicaneks-matched-decramped-second-order-filters" class="nav-link">Vicanek's Matched (Decramped) Second-Order Filters</a>
<ul class="nav flex-column">
<li class="nav-item" data-level="3"><a href="#vebiquad" class="nav-link">(ve.)biquad</a>
<ul class="nav flex-column">
</ul>
</li>
<li class="nav-item" data-level="3"><a href="#velowpass2matched" class="nav-link">(ve.)lowpass2Matched</a>
<ul class="nav flex-column">
</ul>
</li>
<li class="nav-item" data-level="3"><a href="#vehighpass2matched" class="nav-link">(ve.)highpass2Matched</a>
<ul class="nav flex-column">
</ul>
</li>
<li class="nav-item" data-level="3"><a href="#vebandpass2matched" class="nav-link">(ve.)bandpass2Matched</a>
<ul class="nav flex-column">
</ul>
</li>
<li class="nav-item" data-level="3"><a href="#vepeaking2matched" class="nav-link">(ve.)peaking2Matched</a>
<ul class="nav flex-column">
</ul>
</li>
<li class="nav-item" data-level="3"><a href="#velowshelf2matched" class="nav-link">(ve.)lowshelf2Matched</a>
<ul class="nav flex-column">
</ul>
</li>
<li class="nav-item" data-level="3"><a href="#vehighshelf2matched" class="nav-link">(ve.)highshelf2Matched</a>
<ul class="nav flex-column">
</ul>
</li>
</ul>
</li>
<li class="nav-item" data-level="2"><a href="#effects" class="nav-link">Effects</a>
<ul class="nav flex-column">
<li class="nav-item" data-level="3"><a href="#vewah4" class="nav-link">(ve.)wah4</a>
<ul class="nav flex-column">
</ul>
</li>
<li class="nav-item" data-level="3"><a href="#veautowah" class="nav-link">(ve.)autowah</a>
<ul class="nav flex-column">
</ul>
</li>
<li class="nav-item" data-level="3"><a href="#vecrybaby" class="nav-link">(ve.)crybaby</a>
<ul class="nav flex-column">
</ul>
</li>
<li class="nav-item" data-level="3"><a href="#vevocoder" class="nav-link">(ve.)vocoder</a>
<ul class="nav flex-column">
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div></div>
<div class="col-md-9 main-container" role="main">
<h1 id="vaeffectslib">vaeffects.lib</h1>
<p>A library of virtual analog filter effects. Its official prefix is <code>ve</code>.</p>
<p>The virtual analog filter library is organized into 6 sections:</p>
<ul>
<li><a href="#moog-filters">Moog Filters</a></li>
<li><a href="#korg-35-filters">Korg 35 Filters</a></li>
<li><a href="#oberheim-filters">Oberheim Filters</a></li>
<li><a href="#sallen-key-filters">Sallen Key Filters</a></li>
<li><a href="#korg-35-filters">Korg 35 Filters</a></li>
<li><a href="#vicaneks-matched-decramped-second-order-filters">Vicanek's matched (decramped) second-order filters</a></li>
<li><a href="#effects">Effects</a></li>
</ul>
<h4 id="references">References</h4>
<ul>
<li><a href="https://github.com/grame-cncm/faustlibraries/blob/master/vaeffects.lib">https://github.com/grame-cncm/faustlibraries/blob/master/vaeffects.lib</a></li>
</ul>
<h2 id="moog-filters">Moog Filters</h2>
<hr />
<h3 id="vemoog_vcf"><code>(ve.)moog_vcf</code></h3>
<p>Moog "Voltage Controlled Filter" (VCF) in "analog" form. Moog VCF
implemented using the same logical block diagram as the classic
analog circuit. As such, it neglects the one-sample delay associated
with the feedback path around the four one-poles.
This extra delay alters the response, especially at high frequencies
(see reference [1] for details).
See <code>moog_vcf_2b</code> below for a more accurate implementation.</p>
<h4 id="usage">Usage</h4>
<pre><code>_ : moog_vcf(res,fr) : _
</code></pre>
<p>Where:</p>
<ul>
<li><code>res</code>: normalized amount of corner-resonance between 0 and 1
(0 is no resonance, 1 is maximum)</li>
<li><code>fr</code>: corner-resonance frequency in Hz (less than SR/6.3 or so)</li>
</ul>
<h4 id="references_1">References</h4>
<ul>
<li><a href="https://ccrma.stanford.edu/~stilti/papers/moogvcf.pdf">https://ccrma.stanford.edu/~stilti/papers/moogvcf.pdf</a></li>
<li><a href="https://ccrma.stanford.edu/~jos/pasp/vegf.html">https://ccrma.stanford.edu/~jos/pasp/vegf.html</a></li>
</ul>
<hr />
<h3 id="vemoog_vcf_2bn"><code>(ve.)moog_vcf_2b[n]</code></h3>
<p>Moog "Voltage Controlled Filter" (VCF) as two biquads. Implementation
of the ideal Moog VCF transfer function factored into second-order
sections. As a result, it is more accurate than <code>moog_vcf</code> above, but
its coefficient formulas are more complex when one or both parameters
are varied. Here, res is the fourth root of that in <code>moog_vcf</code>, so, as
the sampling rate approaches infinity, <code>moog_vcf(res,fr)</code> becomes equivalent
to <code>moog_vcf_2b[n](res^4,fr)</code> (when res and fr are constant).
<code>moog_vcf_2b</code> uses two direct-form biquads (<code>tf2</code>).
<code>moog_vcf_2bn</code> uses two protected normalized-ladder biquads (<code>tf2np</code>).</p>
<h4 id="usage_1">Usage</h4>
<pre><code>_ : moog_vcf_2b(res,fr) : _
_ : moog_vcf_2bn(res,fr) : _
</code></pre>
<p>Where:</p>
<ul>
<li><code>res</code>: normalized amount of corner-resonance between 0 and 1
(0 is min resonance, 1 is maximum)</li>
<li><code>fr</code>: corner-resonance frequency in Hz</li>
</ul>
<hr />
<h3 id="vemoogladder"><code>(ve.)moogLadder</code></h3>
<p>Virtual analog model of the 4th-order Moog Ladder (without any nonlinearities), which is arguably the
most well-known ladder filter in analog synthesizers. Several
1st-order filters are cascaded in series. Feedback is then used, in part, to
control the cut-off frequency and the resonance.</p>
<h4 id="references_2">References</h4>
<p>[Zavalishin 2012] (revision 2.1.2, February 2020): </p>
<ul>
<li><a href="https://www.native-instruments.com/fileadmin/ni_media/downloads/pdf/VAFilterDesign_2.1.2.pdf">https://www.native-instruments.com/fileadmin/ni_media/downloads/pdf/VAFilterDesign_2.1.2.pdf</a></li>
</ul>
<p>This fix is based on Lorenzo Della Cioppa's correction to Pirkle's implementation; see this post:
https://www.kvraudio.com/forum/viewtopic.php?f=33&t=571909</p>
<h4 id="usage_2">Usage</h4>
<pre><code>_ : moogLadder(normFreq,Q) : _
</code></pre>
<p>Where:</p>
<ul>
<li><code>normFreq</code>: normalized frequency (0-1)</li>
<li><code>Q</code>: quality factor between .707 (0 feedback coefficient) to 25 (feedback = 4, which is the self-oscillating threshold).</li>
</ul>
<hr />
<h3 id="velowpassladder4"><code>(ve.)lowpassLadder4</code></h3>
<p>Topology-preserving transform implementation of a four-pole ladder lowpass.
This is essentially the same filter as the moogLadder above except for
the parameters, which will be expressed in Hz, for the cutoff, and as a
raw feedback coefficient, for the resonance.
Also, note that the parameter order has changed.</p>
<h4 id="references_3">References</h4>
<p>[Zavalishin 2012] (revision 2.1.2, February 2020): </p>
<ul>
<li><a href="https://www.native-instruments.com/fileadmin/ni_media/downloads/pdf/VAFilterDesign_2.1.2.pdf">https://www.native-instruments.com/fileadmin/ni_media/downloads/pdf/VAFilterDesign_2.1.2.pdf</a></li>
</ul>
<h4 id="usage_3">Usage</h4>
<pre><code>_ : lowpassLadder4(k, CF) : _
</code></pre>
<p>Where:</p>
<ul>
<li><code>k</code>: feedback coefficient between 0 and 4, which is the stability threshold.</li>
<li><code>CF</code>: the filter's cutoff in Hz.</li>
</ul>
<p>Notes:</p>
<p>If you want to express the feedback coefficient as the resonance peak, you can use the formula: </p>
<pre><code> k = 4.0 - 1.0 / Q;
</code></pre>
<p>where Q, between .25 and infinity, corresponds to the peak of the filter at cutoff.
I.e., if you feed the filter with a sine whose frequency is the same as the cutoff, the output
peak corresponds exactly to that set via the Q-param.</p>
<hr />
<h3 id="vemooghalfladder"><code>(ve.)moogHalfLadder</code></h3>
<p>Virtual analog model of the 2nd-order Moog Half Ladder (simplified version of
<code>(ve.)moogLadder</code>). Several 1st-order filters are cascaded in series.
Feedback is then used, in part, to control the cut-off frequency and the
resonance.</p>
<p>This filter was implemented in Faust by Eric Tarr during the
<a href="https://ccrma.stanford.edu/workshops/faust-embedded-19/">2019 Embedded DSP With Faust Workshop</a>.</p>
<h4 id="references_4">References</h4>
<ul>
<li><a href="https://www.willpirkle.com/app-notes/virtual-analog-moog-half-ladder-filter">https://www.willpirkle.com/app-notes/virtual-analog-moog-half-ladder-filter</a></li>
<li><a href="http://www.willpirkle.com/Downloads/AN-8MoogHalfLadderFilter.pdf">http://www.willpirkle.com/Downloads/AN-8MoogHalfLadderFilter.pdf</a></li>
</ul>
<h4 id="usage_4">Usage</h4>
<pre><code>_ : moogHalfLadder(normFreq,Q) : _
</code></pre>
<p>Where:</p>
<ul>
<li><code>normFreq</code>: normalized frequency (0-1)</li>
<li><code>Q</code>: q</li>
</ul>
<hr />
<h3 id="vediodeladder"><code>(ve.)diodeLadder</code></h3>
<p>4th order virtual analog diode ladder filter. In addition to the individual
states used within each independent 1st-order filter, there are also additional
feedback paths found in the block diagram. These feedback paths are labeled
as connecting states. Rather than separately storing these connecting states
in the Faust implementation, they are simply implicitly calculated by
tracing back to the other states (<code>s1</code>,<code>s2</code>,<code>s3</code>,<code>s4</code>) each recursive step.</p>
<p>This filter was implemented in Faust by Eric Tarr during the
<a href="https://ccrma.stanford.edu/workshops/faust-embedded-19/">2019 Embedded DSP With Faust Workshop</a>.</p>
<h4 id="references_5">References</h4>
<ul>
<li><a href="https://www.willpirkle.com/virtual-analog-diode-ladder-filter/">https://www.willpirkle.com/virtual-analog-diode-ladder-filter/</a></li>
<li><a href="http://www.willpirkle.com/Downloads/AN-6DiodeLadderFilter.pdf">http://www.willpirkle.com/Downloads/AN-6DiodeLadderFilter.pdf</a></li>
</ul>
<h4 id="usage_5">Usage</h4>
<pre><code>_ : diodeLadder(normFreq,Q) : _
</code></pre>
<p>Where:</p>
<ul>
<li><code>normFreq</code>: normalized frequency (0-1)</li>
<li><code>Q</code>: q</li>
</ul>
<h2 id="korg-35-filters">Korg 35 Filters</h2>
<p>The following filters are virtual analog models of the Korg 35 low-pass
filter and high-pass filter found in the MS-10 and MS-20 synthesizers.
The virtual analog models for the LPF and HPF are different, making these
filters more interesting than simply tapping different states of the same
circuit. </p>
<p>These filters were implemented in Faust by Eric Tarr during the
<a href="https://ccrma.stanford.edu/workshops/faust-embedded-19/">2019 Embedded DSP With Faust Workshop</a>.</p>
<h4 id="filter-history">Filter history:</h4>
<ul>
<li><a href="https://secretlifeofsynthesizers.com/the-korg-35-filter/">https://secretlifeofsynthesizers.com/the-korg-35-filter/</a></li>
</ul>
<hr />
<h3 id="vekorg35lpf"><code>(ve.)korg35LPF</code></h3>
<p>Virtual analog models of the Korg 35 low-pass filter found in the MS-10 and
MS-20 synthesizers.</p>
<h4 id="usage_6">Usage</h4>
<pre><code>_ : korg35LPF(normFreq,Q) : _
</code></pre>
<p>Where:</p>
<ul>
<li><code>normFreq</code>: normalized frequency (0-1)</li>
<li><code>Q</code>: q</li>
</ul>
<hr />
<h3 id="vekorg35hpf"><code>(ve.)korg35HPF</code></h3>
<p>Virtual analog models of the Korg 35 high-pass filter found in the MS-10 and
MS-20 synthesizers.</p>
<h4 id="usage_7">Usage</h4>
<pre><code>_ : korg35HPF(normFreq,Q) : _
</code></pre>
<p>Where:</p>
<ul>
<li><code>normFreq</code>: normalized frequency (0-1)</li>
<li><code>Q</code>: q</li>
</ul>
<h2 id="oberheim-filters">Oberheim Filters</h2>
<p>The following filter (4 types) is an implementation of the virtual analog
model described in Section 7.2 of the Will Pirkle book, "Designing Software
Synthesizer Plug-ins in C++". It is based on the block diagram in Figure 7.5. </p>
<p>The Oberheim filter is a state-variable filter with soft-clipping distortion
within the circuit. </p>
<p>In many VA filters, distortion is accomplished using the "tanh" function.
For this Faust implementation, that distortion function was replaced with
the <code>(ef.)cubicnl</code> function.</p>
<hr />
<h3 id="veoberheim"><code>(ve.)oberheim</code></h3>
<p>Generic multi-outputs Oberheim filter that produces the BSF, BPF, HPF and LPF outputs (see description above).</p>
<h4 id="usage_8">Usage</h4>
<pre><code>_ : oberheim(normFreq,Q) : _,_,_,_
</code></pre>
<p>Where:</p>
<ul>
<li><code>normFreq</code>: normalized frequency (0-1)</li>
<li><code>Q</code>: q</li>
</ul>
<hr />
<h3 id="veoberheimbsf"><code>(ve.)oberheimBSF</code></h3>
<p>Band-Stop Oberheim filter (see description above).
Specialize the generic implementation: keep the first BSF output,
the compiler will only generate the needed code.</p>
<h4 id="usage_9">Usage</h4>
<pre><code>_ : oberheimBSF(normFreq,Q) : _
</code></pre>
<p>Where:</p>
<ul>
<li><code>normFreq</code>: normalized frequency (0-1)</li>
<li><code>Q</code>: q</li>
</ul>
<hr />
<h3 id="veoberheimbpf"><code>(ve.)oberheimBPF</code></h3>
<p>Band-Pass Oberheim filter (see description above).
Specialize the generic implementation: keep the second BPF output,
the compiler will only generate the needed code.</p>
<h4 id="usage_10">Usage</h4>
<pre><code>_ : oberheimBPF(normFreq,Q) : _
</code></pre>
<p>Where:</p>
<ul>
<li><code>normFreq</code>: normalized frequency (0-1)</li>
<li><code>Q</code>: q</li>
</ul>
<hr />
<h3 id="veoberheimhpf"><code>(ve.)oberheimHPF</code></h3>
<p>High-Pass Oberheim filter (see description above).
Specialize the generic implementation: keep the third HPF output,
the compiler will only generate the needed code.</p>
<h4 id="usage_11">Usage</h4>
<pre><code>_ : oberheimHPF(normFreq,Q) : _
</code></pre>
<p>Where:</p>
<ul>
<li><code>normFreq</code>: normalized frequency (0-1)</li>
<li><code>Q</code>: q</li>
</ul>
<hr />
<h3 id="veoberheimlpf"><code>(ve.)oberheimLPF</code></h3>
<p>Low-Pass Oberheim filter (see description above).
Specialize the generic implementation: keep the fourth LPF output,
the compiler will only generate the needed code.</p>
<h4 id="usage_12">Usage</h4>
<pre><code>_ : oberheimLPF(normFreq,Q) : _
</code></pre>
<p>Where:</p>
<ul>
<li><code>normFreq</code>: normalized frequency (0-1)</li>
<li><code>Q</code>: q</li>
</ul>
<h2 id="sallen-key-filters">Sallen Key Filters</h2>
<p>The following filters were implemented based on VA models of synthesizer
filters.</p>
<p>The modeling approach is based on a Topology Preserving Transform (TPT) to
resolve the delay-free feedback loop in the corresponding analog filters. </p>
<p>The primary processing block used to build other filters (Moog, Korg, etc.) is
based on a 1st-order Sallen-Key filter. </p>
<p>The filters included in this script are 1st-order LPF/HPF and 2nd-order
state-variable filters capable of LPF, HPF, and BPF. </p>
<h4 id="resources">Resources:</h4>
<ul>
<li>Vadim Zavalishin (2018) "The Art of VA Filter Design", v2.1.0</li>
<li><a href="https://www.native-instruments.com/fileadmin/ni_media/downloads/pdf/VAFilterDesign_2.1.0.pdf">https://www.native-instruments.com/fileadmin/ni_media/downloads/pdf/VAFilterDesign_2.1.0.pdf</a></li>
<li>Will Pirkle (2014) "Resolving Delay-Free Loops in Recursive Filters Using </li>
<li>the Modified Härmä Method", AES 137 <a href="http://www.aes.org/e-lib/browse.cfm?elib=17517">http://www.aes.org/e-lib/browse.cfm?elib=17517</a></li>
<li>Description and diagrams of 1st- and 2nd-order TPT filters: </li>
<li><a href="https://www.willpirkle.com/706-2/">https://www.willpirkle.com/706-2/</a></li>
</ul>
<hr />
<h3 id="vesallenkeyonepole"><code>(ve.)sallenKeyOnePole</code></h3>
<p>Sallen-Key generic One Pole filter that produces the LPF and HPF outputs (see description above).</p>
<p>For the Faust implementation of this filter, recursion (<code>letrec</code>) is used
for storing filter "states". The output (e.g. <code>y</code>) is calculated by using
the input signal and the previous states of the filter.</p>
<p>During the current recursive step, the states of the filter (e.g. <code>s</code>) for
the next step are also calculated.</p>
<p>Admittedly, this is not an efficient way to implement a filter because it
requires independently calculating the output and each state during each
recursive step. However, it works as a way to store and use "states"
within the constraints of Faust.
The simplest example is the 1st-order LPF (shown on the cover of Zavalishin
* 2018 and Fig 4.3 of <a href="https://www.willpirkle.com/706-2/">https://www.willpirkle.com/706-2/</a>).</p>
<p>Here, the input signal is split in parallel for the calculation of the output signal, <code>y</code>,
and the state <code>s</code>. The value of the state is only used for feedback to the next
step of recursion. It is blocked (!) from also being routed to the output. </p>
<p>A trick used for calculating the state <code>s</code> is to observe that the input to
the delay block is the sum of two signal: what appears to be a feedforward
path and a feedback path. In reality, the signals being summed are identical
<code>(signal*2)</code> plus the value of the current state.</p>
<h4 id="usage_13">Usage</h4>
<pre><code>_ : sallenKeyOnePole(normFreq) : _,_
</code></pre>
<p>Where:</p>
<ul>
<li><code>normFreq</code>: normalized frequency (0-1)</li>
</ul>
<hr />
<h3 id="vesallenkeyonepolelpf"><code>(ve.)sallenKeyOnePoleLPF</code></h3>
<p>Sallen-Key One Pole lowpass filter (see description above).
Specialize the generic implementation: keep the first LPF output,
the compiler will only generate the needed code.</p>
<h4 id="usage_14">Usage</h4>
<pre><code>_ : sallenKeyOnePoleLPF(normFreq) : _
</code></pre>
<p>Where:</p>
<ul>
<li><code>normFreq</code>: normalized frequency (0-1)</li>
</ul>
<hr />
<h3 id="vesallenkeyonepolehpf"><code>(ve.)sallenKeyOnePoleHPF</code></h3>
<p>Sallen-Key One Pole Highpass filter (see description above). The dry input
signal is routed in parallel to the output. The LPF'd signal is subtracted
from the input so that the HPF remains.
Specialize the generic implementation: keep the second HPF output,
the compiler will only generate the needed code.</p>
<h4 id="usage_15">Usage</h4>
<pre><code>_ : sallenKeyOnePoleHPF(normFreq) : _
</code></pre>
<p>Where:</p>
<ul>
<li><code>normFreq</code>: normalized frequency (0-1)</li>
</ul>
<hr />
<h3 id="vesallenkey2ndorder"><code>(ve.)sallenKey2ndOrder</code></h3>
<p>Sallen-Key generic 2nd order filter that produces the LPF, BPF and HPF outputs. </p>
<p>This is a 2nd-order Sallen-Key state-variable filter. The idea is that by
"tapping" into different points in the circuit, different filters
(LPF,BPF,HPF) can be achieved. See Figure 4.6 of
* <a href="https://www.willpirkle.com/706-2/">https://www.willpirkle.com/706-2/</a></p>
<p>This is also a good example of the next step for generalizing the Faust
programming approach used for all these VA filters. In this case, there are
three things to calculate each recursive step (<code>y</code>,<code>s1</code>,<code>s2</code>). For each thing, the
circuit is only calculated up to that point. </p>
<p>Comparing the LPF to BPF, the output signal (<code>y</code>) is calculated similarly.
Except, the output of the BPF stops earlier in the circuit. Similarly, the
states (<code>s1</code> and <code>s2</code>) only differ in that <code>s2</code> includes a couple more terms
beyond what is used for <code>s1</code>. </p>
<h4 id="usage_16">Usage</h4>
<pre><code>_ : sallenKey2ndOrder(normFreq,Q) : _,_,_
</code></pre>
<p>Where:</p>
<ul>
<li><code>normFreq</code>: normalized frequency (0-1)</li>
<li><code>Q</code>: quality factor controlling the sharpness/resonance of the filter around the center frequency (CF). For bandpass filters, higher Q increases the gain at the center frequency. Must be in the range <code>[ma.EPSILON, ma.MAX]</code></li>
</ul>
<hr />
<h3 id="vesallenkey2ndorderlpf"><code>(ve.)sallenKey2ndOrderLPF</code></h3>
<p>Sallen-Key 2nd order lowpass filter (see description above).
Specialize the generic implementation: keep the first LPF output,
the compiler will only generate the needed code.</p>
<h4 id="usage_17">Usage</h4>
<pre><code>_ : sallenKey2ndOrderLPF(normFreq,Q) : _
</code></pre>
<p>Where:</p>
<ul>
<li><code>normFreq</code>: normalized frequency (0-1)</li>
<li><code>Q</code>: quality factor controlling the sharpness/resonance of the filter around the center frequency (CF). For bandpass filters, higher Q increases the gain at the center frequency. Must be in the range <code>[ma.EPSILON, ma.MAX]</code></li>
</ul>
<hr />
<h3 id="vesallenkey2ndorderbpf"><code>(ve.)sallenKey2ndOrderBPF</code></h3>
<p>Sallen-Key 2nd order bandpass filter (see description above).
Specialize the generic implementation: keep the second BPF output,
the compiler will only generate the needed code.</p>
<h4 id="usage_18">Usage</h4>
<pre><code>_ : sallenKey2ndOrderBPF(normFreq,Q) : _
</code></pre>
<p>Where:</p>
<ul>
<li><code>normFreq</code>: normalized frequency (0-1)</li>
<li><code>Q</code>: quality factor controlling the sharpness/resonance of the filter around the center frequency (CF). For bandpass filters, higher Q increases the gain at the center frequency. Must be in the range <code>[ma.EPSILON, ma.MAX]</code></li>
</ul>
<hr />
<h3 id="vesallenkey2ndorderhpf"><code>(ve.)sallenKey2ndOrderHPF</code></h3>
<p>Sallen-Key 2nd order highpass filter (see description above).
Specialize the generic implementation: keep the third HPF output,
the compiler will only generate the needed code.</p>
<h4 id="usage_19">Usage</h4>
<pre><code>_ : sallenKey2ndOrderHPF(normFreq,Q) : _
</code></pre>
<p>Where:</p>
<ul>
<li><code>normFreq</code>: normalized frequency (0-1)</li>
<li><code>Q</code>: quality factor controlling the sharpness/resonance of the filter around the center frequency (CF). For bandpass filters, higher Q increases the gain at the center frequency. Must be in the range <code>[ma.EPSILON, ma.MAX]</code></li>
</ul>
<h2 id="vicaneks-matched-decramped-second-order-filters">Vicanek's Matched (Decramped) Second-Order Filters</h2>
<p>Vicanek's Matched (Decramped) Second-Order Filters.</p>
<p>This collection implements high-quality, double-precision second-order filters
based on the work of Vicanek, offering improved frequency accuracy and dynamic
response over traditional biquads—especially near Nyquist.</p>
<p>Standard digital filter designs (like bilinear-transformed biquads) suffer from
frequency warping, which distorts the placement of poles and zeros. Vicanek's
method, detailed in his paper <em>"Matched Second Order Digital Filters"</em>, proposes
a set of matched filter formulas that eliminate such warping, preserving the
intended analog-like behavior and frequency response.</p>
<p>The filters provided here include:</p>
<ul>
<li><code>biquad</code> — generic difference equation implementation </li>
<li><code>lowpass2Matched</code> — second-order lowpass with resonance </li>
<li><code>highpass2Matched</code> — second-order highpass with resonance </li>
<li><code>bandpass2Matched</code> — second-order bandpass with resonance </li>
<li><code>peaking2Matched</code> — second-order peaking EQ</li>
<li><code>lowshelf2Matched</code> – second-order Butterworth lowshelf</li>
<li><code>highshelf2Matched</code> – second-order Butterworth highshelf</li>
</ul>
<p>Each filter relies on carefully derived coefficient formulas that guarantee
accurate placement of the frequency response peak and preserve Q and gain behavior.</p>
<p>⚠️ <strong>Note:</strong> These filters require <strong>double-precision</strong> support.</p>
<h4 id="references_6">References:</h4>
<p>Vicanek, M. (2016) <em>Matched Second Order Digital Filters</em> </p>
<ul>
<li><a href="https://www.vicanek.de/articles/BiquadFits.pdf">https://www.vicanek.de/articles/BiquadFits.pdf</a></li>
</ul>
<hr />
<h3 id="vebiquad"><code>(ve.)biquad</code></h3>
<p>Basic biquad section implementing the difference equation:
<code>y[n] = b0 * x[n] + b1 * x[n-1] + b2 * x[n-2] - a1 * y[n-1] - a2 * y[n-2]</code></p>
<h4 id="usage_20">Usage:</h4>
<pre><code>_ : biquad(b0, b1, b2, a1, a2) : _
</code></pre>
<h4 id="where">Where:</h4>
<ul>
<li><code>b0, b1, b2, a1, a2</code> are the coefficients of the difference equation above</li>
</ul>
<hr />
<h3 id="velowpass2matched"><code>(ve.)lowpass2Matched</code></h3>
<p>Vicanek's decramped second-order resonant lowpass filter.</p>
<p>⚠️ <strong>Note:</strong> These filters require <strong>double-precision</strong> support.</p>
<h4 id="usage_21">Usage:</h4>
<pre><code>_ : lowpass2Matched(CF, Q) : _
</code></pre>
<h4 id="where_1">Where:</h4>
<ul>
<li><code>CF</code>: cutoff frequency in Hz</li>
<li><code>Q</code>: resonance linear amplitude</li>
</ul>
<hr />
<h3 id="vehighpass2matched"><code>(ve.)highpass2Matched</code></h3>
<p>Vicanek's decramped second-order resonant highpass filter.</p>
<p>⚠️ <strong>Note:</strong> These filters require <strong>double-precision</strong> support.</p>
<h4 id="usage_22">Usage:</h4>
<pre><code>_ : highpass2Matched(CF, Q) : _
</code></pre>
<h4 id="where_2">Where:</h4>
<ul>
<li><code>CF</code>: cutoff frequency in Hz</li>
<li><code>Q</code>: resonance linear amplitude</li>
</ul>
<hr />
<h3 id="vebandpass2matched"><code>(ve.)bandpass2Matched</code></h3>
<p>Vicanek's decramped second-order resonant bandpass filter.</p>
<p>⚠️ <strong>Note:</strong> These filters require <strong>double-precision</strong> support.</p>
<h4 id="usage_23">Usage:</h4>
<pre><code>_ : bandpass2Matched(CF, Q) : _
</code></pre>
<h4 id="where_3">Where:</h4>
<ul>
<li><code>CF</code>: cutoff frequency in Hz</li>
<li><code>Q</code>: peak width</li>
</ul>
<hr />
<h3 id="vepeaking2matched"><code>(ve.)peaking2Matched</code></h3>
<p>Vicanek's decramped second-order resonant bandpass filter.</p>
<p>⚠️ <strong>Note:</strong> These filters require <strong>double-precision</strong> support.</p>
<h4 id="usage_24">Usage:</h4>
<pre><code>_ : peaking2Matched(G, CF, Q) : _
</code></pre>
<h4 id="where_4">Where:</h4>
<ul>
<li><code>G</code>: peak linear amplitude</li>
<li><code>CF</code>: cutoff frequency in Hz</li>
<li><code>Q</code>: peak width</li>
</ul>
<hr />
<h3 id="velowshelf2matched"><code>(ve.)lowshelf2Matched</code></h3>
<p>Vicanek's decramped second-order Butterworth lowshelf filter.</p>
<p>⚠️ <strong>Note:</strong> These filters require <strong>double-precision</strong> support.</p>
<h4 id="usage_25">Usage:</h4>
<pre><code>_ : lowshelf2Matched(G, CF) : _
</code></pre>
<h4 id="where_5">Where:</h4>
<ul>
<li><code>G</code>: shelf linear amplitude</li>
<li><code>CF</code>: cutoff frequency in Hz</li>
</ul>
<hr />
<h3 id="vehighshelf2matched"><code>(ve.)highshelf2Matched</code></h3>
<p>Vicanek's decramped second-order Butterworth highshelf filter.</p>
<p>⚠️ <strong>Note:</strong> These filters require <strong>double-precision</strong> support.</p>
<h4 id="usage_26">Usage:</h4>
<pre><code>_ : highshelf2Matched(G, CF) : _
</code></pre>
<h4 id="where_6">Where:</h4>
<ul>
<li><code>G</code>: shelf linear amplitude</li>
<li><code>CF</code>: cutoff frequency in Hz</li>
</ul>
<h2 id="effects">Effects</h2>
<hr />
<h3 id="vewah4"><code>(ve.)wah4</code></h3>
<p>Wah effect, 4th order.
<code>wah4</code> is a standard Faust function.</p>
<h4 id="usage_27">Usage</h4>
<pre><code>_ : wah4(fr) : _
</code></pre>
<p>Where:</p>
<ul>
<li><code>fr</code>: resonance frequency in Hz</li>
</ul>
<h4 id="reference">Reference</h4>
<ul>
<li><a href="https://ccrma.stanford.edu/~jos/pasp/vegf.html">https://ccrma.stanford.edu/~jos/pasp/vegf.html</a></li>
</ul>
<hr />
<h3 id="veautowah"><code>(ve.)autowah</code></h3>
<p>Auto-wah effect.
<code>autowah</code> is a standard Faust function.</p>
<h4 id="usage_28">Usage</h4>
<pre><code>_ : autowah(level) : _
</code></pre>
<p>Where:</p>
<ul>
<li><code>level</code>: amount of effect desired (0 to 1).</li>
</ul>
<hr />
<h3 id="vecrybaby"><code>(ve.)crybaby</code></h3>
<p>Digitized CryBaby wah pedal.
<code>crybaby</code> is a standard Faust function.</p>
<h4 id="usage_29">Usage</h4>
<pre><code>_ : crybaby(wah) : _
</code></pre>
<p>Where:</p>
<ul>
<li><code>wah</code>: "pedal angle" from 0 to 1</li>
</ul>
<h4 id="reference_1">Reference</h4>
<ul>
<li><a href="https://ccrma.stanford.edu/~jos/pasp/vegf.html">https://ccrma.stanford.edu/~jos/pasp/vegf.html</a></li>
</ul>
<hr />
<h3 id="vevocoder"><code>(ve.)vocoder</code></h3>
<p>A very simple vocoder where the spectrum of the modulation signal
is analyzed using a filter bank.
<code>vocoder</code> is a standard Faust function.</p>
<h4 id="usage_30">Usage</h4>
<pre><code>_ : vocoder(nBands,att,rel,BWRatio,source,excitation) : _
</code></pre>
<p>Where:</p>
<ul>
<li><code>nBands</code>: Number of vocoder bands</li>
<li><code>att</code>: Attack time in seconds</li>
<li><code>rel</code>: Release time in seconds</li>
<li><code>BWRatio</code>: Coefficient to adjust the bandwidth of each band (0.1 - 2)</li>
<li><code>source</code>: Modulation signal</li>
<li><code>excitation</code>: Excitation/Carrier signal</li>
</ul></div>
</div>
</div>
<footer class="col-md-12">
<hr>
<p>Copyright © 2019-2025 <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="/usr/share/javascript/mathjax/MathJax.js" 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">×</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="search" class="form-control" placeholder="Search..." id="mkdocs-search-query" title="Type search term here">
</div>
</form>
<div id="mkdocs-search-results" data-no-results-text="No results found"></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">×</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>
|