Main Page       Index


square-08.lsp


 square-08.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 08 partial square wave approximation.


var

*square-08*

 Wave table, a band limited, 08 partial, square wave approximation.


View the Sourcecode :



;; square-08.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 08 partial square wave approximation.
;;

(require 'wtab)
(provide 'square-08)


;; @doc var *square-08*
;; Wave table, a band limited, 08 partial, square wave approximation.
;;

(setq *square-08* (wtab:make 
		   (wtab:scale
		    (wtab:make-plist 08 
				     :frqfn #'(lambda (n)(- (* n 2) 1)))
		    0.69 )))


Main Page       Index