Skip to content
Ozan Onur TEK edited this page Mar 21, 2016 · 5 revisions

User Guide

The aim of EasyMath project is making mathematical functions and operations easy for users. In this guide, each function's aim is introduced in a simple page.

This wiki is a work in progress, and parts of it may still be under construction.

Basic Usage

##Java

Java version of EasyMath works via using static access

    public class Test {
    public static void main(String...args){
    EasyMath.print(EasyMath.absoluteValue(-1));
      }
      }
    //Console Output:
     1.0

Or you can use it like:

    public class Test extends EasyMath{
    public static void main(String...args){
    print(absoluteValue(-1));
      }
      }
    //Console Output:
     1.0

Clone this wiki locally