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.
Function: put (<atom>, <value>, <indicator>) Assigns <value> to the property (specified by <indicator>) of <atom>. <indicator> may be the name of any property, not just a system-defined property.
put
evaluates its arguments. put
returns <value>.
Examples:
(%i1) put (foo, (a+b)^5, expr); 5 (%o1) (b + a) (%i2) put (foo, "Hello", str); (%o2) Hello (%i3) properties (foo); (%o3) [[user properties, str, expr]] (%i4) get (foo, expr); 5 (%o4) (b + a) (%i5) get (foo, str); (%o5) Hello
There are also some inexact matches for put
. Try ?? put
to see them.
(%o1) true (%i2)