Function: calcFunc-matchnot

calcFunc-matchnot is an autoloaded and byte-compiled function defined in calc-rewr.el.gz.

Signature

(calcFunc-matchnot PAT VEC)

Source Code

;; Defined in /usr/src/emacs/lisp/calc/calc-rewr.el.gz
(defun calcFunc-matchnot (pat vec)
  (or (math-vectorp vec) (math-reject-arg vec 'vectorp))
  (condition-case err
      (math-match-patterns pat vec t)
    (error (math-reject-arg pat (nth 1 err)))))