![]() |
Type in a command, or "ls dictionary" to search all commands for "dictionary", etc.
|
SYNOPSIS
mate [math expressions]
EXAMPLES (from Mate's getting started page: http://www.tusanga.com/gettingstarted.html)
mate
mate alone takes you to the homepage of the calculator: http://www.tusanga.com/
mate 2 * 27
results in:
54
mate a := 2 ; b := 7 ; a + b
results in:
a := 2
b := 7
9
mate d := 2 + q + 4
results in:
d := 6 + q
mate 2 - 7 ; 2 * ans
results in:
-5
-10
mate f(x) := 2 * x ^ 2 ; f(3)
results in:
f(x) := (2*(x^2))
18
mate g(x,y,z) := x+y+2*z : g(1, 2, 3)
results in:
9
mate 2.5-1.8 ; 0b1101 ; 0h2f ; MCMLXXIV|r
results in:
0.7
13
47
1974
DESCRIPTION
A simple interface to Tusanga's Mate, a free online symbolic calculator. If no argument is given it takes you to Mate's homepage.
Caveat: Currently, YubNub will choke with arguments for Mate such as "M := { 1, 2 ; 3, 4 }: v := { 5,6 } : M * v`" because it tries to interpret the brackets as a switch and fails to do so.
AUTHOR
Eliazar (elzr.com) on behalf of cal (http://groups.google.com/group/YubNub/browse_thread/thread/32c02a9d5ee43379).