put SciMax Toolbox qrange

SciMax Toolbox >> qput

qput

Maxima Function

Calling Sequence

qput (atom, value, indicator)

Description

Assigns value to the property (specified by indicator) of atom. This is the same as put, except that the arguments are quoted.

Example:

(%i1) foo: aa$
(%i2) bar: bb$
(%i3) baz: cc$
(%i4) put (foo, bar, baz);
(%o4)                          bb
(%i5) properties (aa);
(%o5)                [[user properties, cc]]
(%i6) get (aa, cc);
(%o6)                          bb
(%i7) qput (foo, bar, baz);
(%o7)                          bar
(%i8) properties (foo);
(%o8)            [value, [user properties, baz]]
(%i9) get ('foo, 'baz);
(%o9)                          bar
put SciMax Toolbox qrange