Function: calc-grab-rectangle

calc-grab-rectangle is an autoloaded, interactive and byte-compiled function defined in calc.el.gz.

Signature

(calc-grab-rectangle TOP BOT ARG)

Documentation

Parse a rectangle as a matrix of numbers and push it on the Calculator stack.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/calc/calc.el.gz
;;;###autoload
(defun calc-grab-rectangle (top bot arg)
  "Parse a rectangle as a matrix of numbers and push it on the Calculator stack."
  (interactive "r\nP")
  (require 'calc-ext)
  (calc-do-grab-rectangle top bot arg))