Function: calcFunc-match

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

Signature

(calcFunc-match PAT VEC)

Source Code

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