This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (defun lisp-enable-paredit-hook () (paredit-mode 1)) | |
| (add-hook 'clojure-mode-hook 'lisp-enable-paredit-hook) | |
| (defmacro defclojureface (name color desc &optional others) | |
| `(defface ,name '((((class color)) (:foreground ,color ,@others))) ,desc :group 'faces)) | |
| (defclojureface clojure-parens "DimGrey" "Clojure parens") | |
| (defclojureface clojure-braces "#49b2c7" "Clojure braces") | |
| (defclojureface clojure-brackets "SteelBlue" "Clojure brackets") | |
| (defclojureface clojure-keyword "khaki" "Clojure keywords") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function [maxtab, mintab]=peakdet(v, delta, x) | |
| %PEAKDET Detect peaks in a vector | |
| % [MAXTAB, MINTAB] = PEAKDET(V, DELTA) finds the local | |
| % maxima and minima ("peaks") in the vector V. | |
| % MAXTAB and MINTAB consists of two columns. Column 1 | |
| % contains indices in V, and column 2 the found values. | |
| % | |
| % With [MAXTAB, MINTAB] = PEAKDET(V, DELTA, X) the indices | |
| % in MAXTAB and MINTAB are replaced with the corresponding | |
| % X-values. |
NewerOlder