sconc SciMax Toolbox scopy

SciMax Toolbox >> sconcat

sconcat

Maxima Function

Calling Sequence

sconcat (arg_1, arg_2, ...)

Description

Concatenates its arguments into a string. Unlike concat, the arguments do not need to be atoms.

The result is a Lisp string.

(%i1) sconcat ("xx[", 3, "]:", expand ((x+y)^3));
(%o1)               xx[3]:y^3+3*x*y^2+3*x^2*y+x^3
sconc SciMax Toolbox scopy