[Pkg-octave-commit] [SCM] octave-symbolic branch, master, updated. a718b53403d9f164f8c2a3df521385a01d28a11b
adb014
adb014 at 416fae20-06d0-4450-9b69-c6c34d4b5f03
Mon Jan 3 03:40:50 UTC 2011
The following commit has been merged in the master branch:
commit c441b48d2432ed25c7b0db9b01bdb6f6fb932e18
Author: adb014 <adb014 at 416fae20-06d0-4450-9b69-c6c34d4b5f03>
Date: Mon Mar 5 13:19:29 2007 +0000
Don't use which in autoload, but a command that identifies a function that coexists with the PKG_ADD file in which the autoload is found
git-svn-id: https://octave.svn.sourceforge.net/svnroot/octave/trunk/octave-forge/main/symbolic@3392 416fae20-06d0-4450-9b69-c6c34d4b5f03
diff --git a/PKG_ADD b/PKG_ADD
index 75826ca..15d6376 100644
--- a/PKG_ADD
+++ b/PKG_ADD
@@ -1,42 +1,42 @@
-autoload ("vpa", which ("symbols"));
-autoload ("sym", which ("symbols"));
-autoload ("is_vpa", which ("symbols"));
-autoload ("is_sym", which ("symbols"));
-autoload ("is_ex", which ("symbols"));
-autoload ("to_double", which ("symbols"));
-autoload ("digits", which ("symbols"));
-autoload ("Cos", which ("symbols"));
-autoload ("Sin", which ("symbols"));
-autoload ("Tan", which ("symbols"));
-autoload ("aCos", which ("symbols"));
-autoload ("aSin", which ("symbols"));
-autoload ("aTan", which ("symbols"));
-autoload ("Cosh", which ("symbols"));
-autoload ("Sinh", which ("symbols"));
-autoload ("Tanh", which ("symbols"));
-autoload ("aCosh", which ("symbols"));
-autoload ("aSinh", which ("symbols"));
-autoload ("aTanh", which ("symbols"));
-autoload ("Exp", which ("symbols"));
-autoload ("Log", which ("symbols"));
-autoload ("Sqrt", which ("symbols"));
-autoload ("subs", which ("symbols"));
-autoload ("differentiate", which ("symbols"));
-autoload ("expand", which ("symbols"));
-autoload ("collect", which ("symbols"));
-autoload ("coeff", which ("symbols"));
-autoload ("lcoeff", which ("symbols"));
-autoload ("tcoeff", which ("symbols"));
-autoload ("degree", which ("symbols"));
-autoload ("ldegree", which ("symbols"));
-autoload ("quotient", which ("symbols"));
-autoload ("remainder", which ("symbols"));
-autoload ("premainder", which ("symbols"));
-autoload ("Pi", which ("symbols"));
-autoload ("ex_matrix", which ("symbols"));
-autoload ("probably_prime", which ("symbols"));
-autoload ("findsymbols", which ("symbols"));
-autoload ("numden", which ("symbols"));
-autoload ("syminfo", which ("symbols"));
-autoload ("symlsolve", which ("symbols"));
-autoload ("sumterms", which ("symbols"));
+autoload ("vpa", fullfile (fileparts (mfilename ("fullpath")), "symbols.oct"));
+autoload ("sym", fullfile (fileparts (mfilename ("fullpath")), "symbols.oct"));
+autoload ("is_vpa", fullfile (fileparts (mfilename ("fullpath")), "symbols.oct"));
+autoload ("is_sym", fullfile (fileparts (mfilename ("fullpath")), "symbols.oct"));
+autoload ("is_ex", fullfile (fileparts (mfilename ("fullpath")), "symbols.oct"));
+autoload ("to_double", fullfile (fileparts (mfilename ("fullpath")), "symbols.oct"));
+autoload ("digits", fullfile (fileparts (mfilename ("fullpath")), "symbols.oct"));
+autoload ("Cos", fullfile (fileparts (mfilename ("fullpath")), "symbols.oct"));
+autoload ("Sin", fullfile (fileparts (mfilename ("fullpath")), "symbols.oct"));
+autoload ("Tan", fullfile (fileparts (mfilename ("fullpath")), "symbols.oct"));
+autoload ("aCos", fullfile (fileparts (mfilename ("fullpath")), "symbols.oct"));
+autoload ("aSin", fullfile (fileparts (mfilename ("fullpath")), "symbols.oct"));
+autoload ("aTan", fullfile (fileparts (mfilename ("fullpath")), "symbols.oct"));
+autoload ("Cosh", fullfile (fileparts (mfilename ("fullpath")), "symbols.oct"));
+autoload ("Sinh", fullfile (fileparts (mfilename ("fullpath")), "symbols.oct"));
+autoload ("Tanh", fullfile (fileparts (mfilename ("fullpath")), "symbols.oct"));
+autoload ("aCosh", fullfile (fileparts (mfilename ("fullpath")), "symbols.oct"));
+autoload ("aSinh", fullfile (fileparts (mfilename ("fullpath")), "symbols.oct"));
+autoload ("aTanh", fullfile (fileparts (mfilename ("fullpath")), "symbols.oct"));
+autoload ("Exp", fullfile (fileparts (mfilename ("fullpath")), "symbols.oct"));
+autoload ("Log", fullfile (fileparts (mfilename ("fullpath")), "symbols.oct"));
+autoload ("Sqrt", fullfile (fileparts (mfilename ("fullpath")), "symbols.oct"));
+autoload ("subs", fullfile (fileparts (mfilename ("fullpath")), "symbols.oct"));
+autoload ("differentiate", fullfile (fileparts (mfilename ("fullpath")), "symbols.oct"));
+autoload ("expand", fullfile (fileparts (mfilename ("fullpath")), "symbols.oct"));
+autoload ("collect", fullfile (fileparts (mfilename ("fullpath")), "symbols.oct"));
+autoload ("coeff", fullfile (fileparts (mfilename ("fullpath")), "symbols.oct"));
+autoload ("lcoeff", fullfile (fileparts (mfilename ("fullpath")), "symbols.oct"));
+autoload ("tcoeff", fullfile (fileparts (mfilename ("fullpath")), "symbols.oct"));
+autoload ("degree", fullfile (fileparts (mfilename ("fullpath")), "symbols.oct"));
+autoload ("ldegree", fullfile (fileparts (mfilename ("fullpath")), "symbols.oct"));
+autoload ("quotient", fullfile (fileparts (mfilename ("fullpath")), "symbols.oct"));
+autoload ("remainder", fullfile (fileparts (mfilename ("fullpath")), "symbols.oct"));
+autoload ("premainder", fullfile (fileparts (mfilename ("fullpath")), "symbols.oct"));
+autoload ("Pi", fullfile (fileparts (mfilename ("fullpath")), "symbols.oct"));
+autoload ("ex_matrix", fullfile (fileparts (mfilename ("fullpath")), "symbols.oct"));
+autoload ("probably_prime", fullfile (fileparts (mfilename ("fullpath")), "symbols.oct"));
+autoload ("findsymbols", fullfile (fileparts (mfilename ("fullpath")), "symbols.oct"));
+autoload ("numden", fullfile (fileparts (mfilename ("fullpath")), "symbols.oct"));
+autoload ("syminfo", fullfile (fileparts (mfilename ("fullpath")), "symbols.oct"));
+autoload ("symlsolve", fullfile (fileparts (mfilename ("fullpath")), "symbols.oct"));
+autoload ("sumterms", fullfile (fileparts (mfilename ("fullpath")), "symbols.oct"));
--
octave-symbolic
More information about the Pkg-octave-commit
mailing list