Main Page       Index


pulse50.lsp


 pulse50.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 50% pulse wave, not band limited.


var

*pulse50*

 Wave table, a 50% pulse wave table, NOT band limited.


View the Sourcecode :



;; pulse50.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 50% pulse wave, not band limited.
;;

(require 'wtab)
(provide 'pulse50)


;; @doc var *pulse50*
;; Wave table, a 50% pulse wave table, NOT band limited.
;;

(setf *pulse50* (wtab:pulse 0.50))


Main Page       Index