Function: math-format-flat-vector

math-format-flat-vector is a byte-compiled function defined in calc-ext.el.gz.

Signature

(math-format-flat-vector VEC SEP PREC)

Source Code

;; Defined in /usr/src/emacs/lisp/calc/calc-ext.el.gz
(defun math-format-flat-vector (vec sep prec)
  (if vec
      (let ((buf (math-format-flat-expr (car vec) prec)))
	(while (setq vec (cdr vec))
	  (setq buf (concat buf sep (math-format-flat-expr (car vec) prec))))
	buf)
    ""))