1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-30 04:10:54 -08:00

lisp/calc/calc-menu.el (calc-vectors-menu): Remove menu item for

incorrect keybinding.

doc/misc/calc.texi (Single-Variable Statistics): Remove mention of
incorrect keybinding.
This commit is contained in:
Jay Belanger 2014-02-13 20:35:59 -06:00
parent 019ff874af
commit 2804e0bd8f
4 changed files with 20 additions and 9 deletions

View file

@ -1,3 +1,8 @@
2014-02-14 Jay Belanger <jay.p.belanger@gmail.com>
* calc.texi (Single-Variable Statistics): Remove mention of
incorrect keybinding.
2014-02-12 Paul Eggert <eggert@cs.ucla.edu>
* texinfo.tex: Update from gnulib.

View file

@ -20756,9 +20756,9 @@ mean, then repeating until the two values converge.
$$ a_{i+1} = { a_i + b_i \over 2 } , \qquad b_{i+1} = \sqrt{a_i b_i} $$
@end tex
@cindex Root-mean-square
Another commonly used mean, the RMS (root-mean-square), can be computed
for a vector of numbers simply by using the @kbd{A} command.
@c @cindex Root-mean-square
@c Another commonly used mean, the RMS (root-mean-square), can be computed
@c for a vector of numbers simply by using the @kbd{A} command.
@kindex u S
@pindex calc-vector-sdev

View file

@ -1,3 +1,8 @@
2014-02-14 Jay Belanger <jay.p.belanger@gmail.com>
* calc/calc-menu.el (calc-vectors-menu): Remove menu item for
incorrect keybinding.
2014-02-13 Daniel Colascione <dancol@dancol.org>
* progmodes/flymake.el (flymake-post-syntax-check): Widen buffer

View file

@ -917,12 +917,13 @@
(call-interactively 'calc-vector-geometric-mean)))
:keys "H u G"
:active (>= (calc-stack-size) 1)]
["RMS(1:)"
(progn (require 'calc-arith)
(call-interactively 'calc-abs))
:keys "A"
:active (>= (calc-stack-size) 1)
:help "The root-mean-square, or quadratic mean"])
;; ["RMS(1:)"
;; (progn (require 'calc-arith)
;; (call-interactively 'calc-abs))
;; :keys "A"
;; :active (>= (calc-stack-size) 1)
;; :help "The root-mean-square, or quadratic mean"]
)
["Abbreviate long vectors"
(progn
(require 'calc-mode)