Major improvement:
You can plot now! Use command like plot (x, y) to plot your graph!
Here's an example:
Say, if you want to plot y=x^2:
First, give a range and step for your x value:
x = -2:0.1:2; (This command line means you want x to be from -2 to 2, with step 0.1, and don't forget the semicolon ';' at the end)
Then, assign y:
y = x.^2; (IMPORTANT: you have to use "." before operators to avoid illegal matrix operation, thus if you want y = x^2, use command y = x.^2; if you want y = x/2, use command y = x./2)
Finally, plot:
plot (x, y)
then hit enter.
You can also watch the demo video here to learn the new plotting feature:
Mathmatiz is the best android calculator. It provides its users technical computation ability similar to the famous computation software MATLAB on an Android phone, including m file support and plotting. Now you can forget about the regular calculators and use Mathmatiz to solve all your math problems on your phone, including complex numbers, trig functions, matrices and more!
Manual
The user manual of Mathmatiz can be found here: https://sites.google.com/site/mathmatizmobile/
Sunday, October 9, 2011
Subscribe to:
Posts (Atom)