zynaddsubfx

ZynAddSubFX open source synthesizer
Log | Files | Refs | Submodules | LICENSE

velf.tex (526B)


      1 \documentclass{standalone}
      2 \usepackage{tikz,pgfplots}
      3 \begin{document}
      4 \begin{tikzpicture}
      5     \begin{axis}[domain=0:1,samples=128,no markers,
      6         xlabel=Note Velocity,ylabel=Param Magnitude,
      7        legend style={ cells={anchor=east}, legend pos=outer north east}]
      8         \addplot gnuplot{x^8^1};
      9         \addlegendentry{max sensing}
     10         \addplot gnuplot{x^(8^-1)};
     11         \addlegendentry{min sensing}
     12         \addplot gnuplot{x};
     13         \addlegendentry{avg sensing}
     14     \end{axis}
     15 \end{tikzpicture}
     16 \end{document}