Main Page       Index


pulse25.lsp



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


var

*pulse25*

 Wave table, a 25% pulse, NOT band limited.


View the Sourcecode :



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

(require 'wtab)
(provide 'pulse25)


;; @doc var *pulse25*
;; Wave table, a 25% pulse, NOT band limited.
;;

(setf *pulse25* (wtab:pulse 0.25))


Main Page       Index