Skip to content

Commit

Permalink
More short summarys for tensor built-in functions
Browse files Browse the repository at this point in the history
  • Loading branch information
axkr committed Sep 4, 2023
1 parent f5ab4a6 commit ea1569a
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ public static synchronized void init() {
USAGE[ID.$MaxMachineNumber] = "largest normalized positive machine number";
USAGE[ID.$MinMachineNumber] = "smallest normalized positive machine number";

USAGE[ID.$Packages] = "list the packages loaded in the current session";

USAGE[ID.$RecursionLimit] =
"specifies the maximum allowable recursion depth after which a calculation is terminated";

Expand Down Expand Up @@ -49,6 +51,7 @@ public static synchronized void init() {
USAGE[ID.ArcTan] = "inverse tangent function";
USAGE[ID.ArcTanh] = "inverse hyperbolic tangent function";
USAGE[ID.Arg] = "phase of a complex number";
USAGE[ID.ArrayDepth] = "the rank of a tensor";
USAGE[ID.Attributes] = "find the attributes of a symbol";
USAGE[ID.Append] = "add an element at the end of an expression";
USAGE[ID.AppendTo] = "add an element at the end of an stored list or expression";
Expand Down Expand Up @@ -128,13 +131,15 @@ public static synchronized void init() {
USAGE[ID.DiceDissimilarity] = "Dice dissimilarity";
USAGE[ID.DigitCharacter] = "digit 0-9";
USAGE[ID.DigitQ] = "test whether all the characters are digits";
USAGE[ID.Dimensions] = "the dimensions of a tensor";
USAGE[ID.DirectedInfinity] = "infinite quantity with a defined direction in the complex plane";
USAGE[ID.DiscretePlot] = "discrete plot of a one-parameter function";
USAGE[ID.DisjointQ] = "test whether two lists do not have common elements";
USAGE[ID.Divide] = "divide";
USAGE[ID.DivideBy] = "divide a value and assigns that returning the new value";
USAGE[ID.Divisors] = "integer divisors";
USAGE[ID.Do] = "evaluate an expression looping over a variable";
USAGE[ID.Dot] = "dot product";
USAGE[ID.DownValues] =
"get transformation rules corresponding to all downvalues defined for a symbol";
USAGE[ID.Drop] = "remove a number of elements from a list";
Expand Down Expand Up @@ -242,6 +247,7 @@ public static synchronized void init() {
USAGE[ID.Infinity] = "infinite real quantity";
USAGE[ID.Infix] = "infix form";
USAGE[ID.Information] = "get information about all assignments for a symbol";
USAGE[ID.Inner] = "generalized inner product";
USAGE[ID.Input] = "the name of the current input stream";
USAGE[ID.InputForm] = "plain-text input format";
USAGE[ID.Insert] = "insert an element at a given position";
Expand Down Expand Up @@ -364,6 +370,7 @@ public static synchronized void init() {
USAGE[ID.Orderless] =
"attribute for functions with results that does not depends on the order of their arguments";
USAGE[ID.OutputForm] = "plain-text output format";
USAGE[ID.Outer] = "generalized outer product";
USAGE[ID.Overflow] = "overflow in numeric evaluation";

USAGE[ID.PadLeft] = "pad out by the left a ragged array to make a matrix";
Expand Down

0 comments on commit ea1569a

Please sign in to comment.