vvDisplayCalculator
vvDisplayCalculator( [t_expression] ) =>t/nil
Description
Opens Calculator within a window. The function also displays the expression, if specified, in the buffer.
Arguments
Value Returned
Examples
The following example opens Calculator and displays the specified expression in the Buffer.
vvDisplayCalculator("expr(x sin(x) linRg(2 4 0.5))")
=> calSetBuffer("expr(x sin(x) linRg(2 4 0.5))")
=> t
=> t

The following example opens Calculator.
vvDisplayCalculator()
=> t
Return to top