Main Page       Index


skewsaw33.lsp


 skewsaw33.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 skewed sawtooth wave table.


var

*skewsaw33*

 A "skewed" sawtooth wave table. 
 NOTE The wave is not band limited.


View the Sourcecode :



;; skewsaw33.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 skewed sawtooth wave table.

(require 'wtab)
(provide 'skewsaw33)


;; @doc var *skewsaw33*
;; A "skewed" sawtooth wave table. 
;; NOTE The wave is not band limited.
;;

(setf *skewsaw33* (wtab:gwave 0.33 1))


Main Page       Index