Update of /cvsroot/stack/stack-dev/maxima
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv30819/maxima
Modified Files:
unittests.mac stackmaxima.mac maximafun.php stacktex.lisp
Log Message:
log10 support
Index: stackmaxima.mac
===================================================================
RCS file: /cvsroot/stack/stack-dev/maxima/stackmaxima.mac,v
retrieving revision 1.83
retrieving revision 1.84
diff -C2 -d -r1.83 -r1.84
*** stackmaxima.mac 27 Oct 2010 13:34:24 -0000 1.83
--- stackmaxima.mac 1 Nov 2010 14:34:29 -0000 1.84
***************
*** 51,57 ****
stack_reset(1000);
-
alias(int,integrate); /* Allows integrate to be called with int() */
- alias(ln,log);
alias(simplify,fullratsimp); /* Allows simplify to be something */
--- 51,55 ----
***************
*** 62,65 ****
--- 60,72 ----
/* ********************************** */
+ /* Logarithms */
+ /* ********************************** */
+ alias(ln,log);
+ load("log10");
+ texput(log10,"\\log\\mathrm{10}",prefix);
+ alias(lg,log10);
+ texput(lg,"\\mathrm{lg}",prefix);
+
+ /* ********************************** */
/* Load contributed packages */
/* ********************************** */
Index: stacktex.lisp
===================================================================
RCS file: /cvsroot/stack/stack-dev/maxima/stacktex.lisp,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** stacktex.lisp 13 Oct 2010 14:58:07 -0000 1.7
--- stacktex.lisp 1 Nov 2010 14:34:29 -0000 1.8
***************
*** 150,151 ****
--- 150,153 ----
(defprop mlessp (" < ") texsym)
(defprop mgreaterp (" > ") texsym)
+
+
Index: maximafun.php
===================================================================
RCS file: /cvsroot/stack/stack-dev/maxima/maximafun.php,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** maximafun.php 30 Sep 2010 16:56:14 -0000 1.7
--- maximafun.php 1 Nov 2010 14:34:29 -0000 1.8
***************
*** 3489,3492 ****
--- 3489,3495 ----
$maxima_cmd['log']['use'] = 's';
+ $maxima_cmd['log10']['urls'][] = 'maxima_14.html#IDX529';
+ $maxima_cmd['log10']['use'] = 's';
+
$maxima_cmd['log_gamma']['urls'][] = 'maxima_16.html#IDX595';
$maxima_cmd['log_gamma']['use'] = 's';
Index: unittests.mac
===================================================================
RCS file: /cvsroot/stack/stack-dev/maxima/unittests.mac,v
retrieving revision 1.17
retrieving revision 1.18
diff -C2 -d -r1.17 -r1.18
*** unittests.mac 27 Oct 2010 13:34:24 -0000 1.17
--- unittests.mac 1 Nov 2010 14:34:29 -0000 1.18
***************
*** 199,200 ****
--- 199,203 ----
UT('strip_int_const((x-1)^2+k^2,x),(x-1)^2);
UT('strip_int_const((t-1)^4/4+c,x),(t-1)^4/4);
+
+
+
|