Online Algebra Calculator
Many of users do not use powerful Maxima computer algebra system for systematic work, but for ad hoc algebraic calculations – equations, functions, matrixes, etc. only. To do this job, it is not useful to download the whole application from a web site.
-- Option variable: stringdisp Default value: false
When stringdisp is true, strings are displayed enclosed in double quote marks. Otherwise, quote marks are not displayed.
b then c else d));
op ('foo (a));
prefix (foo);
op (foo a);
op (f [x, y] (a, b, c));
op (g [u, v, w]);
' title='Stringdisp Example' width='30%' /> stringdisp is always true when displaying a function definition.
Examples:
(%i1) stringdisp: false$
(%i2) "This is an example string.";
(%o2) This is an example string.
(%i3) foo () :=
print ("This is a string in a function definition.");
(%o3) foo() :=
print("This is a string in a function definition.")
(%i4) stringdisp: true$
(%i5) "This is an example string.";
(%o5) "This is an example string."(%o1) true (%i2)