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/
Subscribe to:
Post Comments (Atom)
Wow! it's a grat improvement. I have a question: It's possible to use comparation opperators (such as >, <, >=, <=, etc) iniside scripts/programs? how I can acces to this opperators from Mathmatiz Keyboard?
ReplyDeleteThe mathmatiz can do that. But they are not fully tested yet. I will add these operators on the future updates.
ReplyDeleteIf there are any features you want to add in Mathmatiz, please let me know. The users feedback are the major force to push me to upgrade this application.