Adjust previous change to behave as intended.
This commit is contained in:
parent
b49df7426b
commit
53f963cf73
1 changed files with 7 additions and 7 deletions
|
|
@ -759,13 +759,13 @@
|
|||
(math-reject-arg n "*Index out of range")))))
|
||||
|
||||
(defun calcFunc-subscr (mat n &optional m)
|
||||
(if (eq (car-safe mat) 'var) nil)
|
||||
(if (eq (car-safe mat) 'var) nil
|
||||
(setq mat (calcFunc-mrow mat n))
|
||||
(if m
|
||||
(if (math-num-integerp n)
|
||||
(calcFunc-mrow mat m)
|
||||
(calcFunc-mcol mat m))
|
||||
mat))
|
||||
mat)))
|
||||
|
||||
;;; Get the Nth column of a matrix.
|
||||
(defun math-mat-col (mat n)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue