swisseph
クラス SMath

java.lang.Object
  上位を拡張 swisseph.SMath
すべての実装されたインタフェース:
java.io.Serializable

public class SMath
extends java.lang.Object
implements java.io.Serializable

Helper class mapping all mathematical functions and constants to the java.lang.Math class.

関連項目:
直列化された形式

フィールドの概要
static double E
           
static double PI
           
 
コンストラクタの概要
SMath()
           
 
メソッドの概要
static double abs(double d)
           
static float abs(float f)
           
static int abs(int i)
           
static long abs(long l)
           
static double acos(double x)
           
static double asin(double x)
           
static double atan(double x)
           
static double atan2(double y, double x)
           
static double ceil(double a)
           
static double cos(double a)
           
static double exp(double x)
           
static double floor(double a)
           
static double IEEEremainder(double x, double y)
           
static double log(double x)
           
static double max(double a, double b)
           
static float max(float a, float b)
           
static int max(int a, int b)
           
static long max(long a, long b)
           
static double min(double a, double b)
           
static float min(float a, float b)
           
static int min(int a, int b)
           
static long min(long a, long b)
           
static double pow(double x, double y)
           
static double random()
           
static double rint(double a)
           
static long round(double d)
           
static int round(float f)
           
static double sin(double a)
           
static double sqrt(double x)
           
static double tan(double a)
           
 
クラス java.lang.Object から継承されたメソッド
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

フィールドの詳細

E

public static final double E
関連項目:
定数フィールド値

PI

public static final double PI
関連項目:
定数フィールド値
コンストラクタの詳細

SMath

public SMath()
メソッドの詳細

abs

public static int abs(int i)

abs

public static long abs(long l)

abs

public static float abs(float f)

abs

public static double abs(double d)

min

public static int min(int a,
                      int b)

min

public static long min(long a,
                       long b)

min

public static float min(float a,
                        float b)

min

public static double min(double a,
                         double b)

max

public static int max(int a,
                      int b)

max

public static long max(long a,
                       long b)

max

public static float max(float a,
                        float b)

max

public static double max(double a,
                         double b)

sin

public static double sin(double a)

cos

public static double cos(double a)

tan

public static double tan(double a)

asin

public static double asin(double x)

acos

public static double acos(double x)

atan

public static double atan(double x)

atan2

public static double atan2(double y,
                           double x)

exp

public static double exp(double x)

log

public static double log(double x)

sqrt

public static double sqrt(double x)

pow

public static double pow(double x,
                         double y)

IEEEremainder

public static double IEEEremainder(double x,
                                   double y)

ceil

public static double ceil(double a)

floor

public static double floor(double a)

rint

public static double rint(double a)

round

public static int round(float f)

round

public static long round(double d)

random

public static double random()