5.2.4 Other Help |
Help
feature of the Define
command.
Example |
Help(); Type Help < Op > to get help on operator < Op > ------------------------------- Help("GBasis"); -- note the typical response, one of the main -- motivations for the author of the online manual. No help available for GBasis ------------------------------- |
Example |
Describe Function("Insert");
DEFINE Insert(L,I,O)
$list.Insert(L,I,O)
END
-------------------------------
Describe Function(" |
Functions("$user")
lists all current user-defined functions.
Example |
Functions("$mat"); [About(), Man(), Identity(N), Transposed(M), Submat(M,Rows,Cols), Jacobian(S), Resultant(F,G,X), DirectSum(M1,M2), BlockMatrix(LL), ColumnVectors(M), Complement(M,I,J), Bip(M,J), Pfaffian(M), Sylvester(F,G,X), ExtendRows(M,N), PushRows(M,N), ConcatRows(L), PkgName()] ------------------------------- |
Packages()
.
Starting(S)
where S is a string returns a list of all
functions starting with the string S.
Example |
Starting("Su"); ["SubstPoly", "SubSet", "Submat", "Sum", "Subst", "Support"] ------------------------------- |