How to display mathematical equations (eg. polynomial equations) using j2me(midlet application).Can any one help me out!!!!! and also the squareroot etc......
Thanks
Ganga
How to display mathematical equations (eg. polynomial equations) using j2me(midlet application).Can any one help me out!!!!! and also the squareroot etc......
Thanks
Ganga
Font features on most mobile devices are limited, and in MIDP, there is no support for subscript and superscript.
Font might contain special characters, such as:
So, it might be possible to draw a string like:Code:\u00b2 superscript 2 \u00b3 superscript 3
as "ax² + bx + c".Code:String poly = "ax\u00b2 + bx + c";
Beyond that, you would really need to start creating an equation-rendering engine, to draw to a Canvas.
Cheers,
Graham.