Main Page       Index


saw-02.lsp


 saw-02.lsp
 Version 1.00 	29 April 2005
 Author Steven Jones

 Contact jones57@swbell.net include the word "nyquist" in subject line  

 The contents of this file are released under the terms of the GNU General
 Public License. See the file LICENSE.txt

 A 2 partial sawtooth approximation.


var

*saw-02*

 Wave table, a band-limited, 2 partial, sawtooth approximation.


View the Sourcecode :



;; saw-02.lsp
;; Version 1.00 	29 April 2005
;; Author Steven Jones
;;
;; Contact jones57@swbell.net include the word "nyquist" in subject line  
;;
;; The contents of this file are released under the terms of the GNU General
;; Public License. See the file LICENSE.txt
;;
;; A 2 partial sawtooth approximation.
;;

(require 'wtab)
(provide 'saw-02)


;; @doc var *saw-02*
;; Wave table, a band-limited, 2 partial, sawtooth approximation.
;;

(setq *saw-02* (wtab:make (wtab:scale (wtab:make-plist 2) 0.78)))


Main Page       Index