org.mklab.tool.control.system.math
列挙型 MathematicalFunctionType

java.lang.Object
  上位を拡張 java.lang.Enum<MathematicalFunctionType>
      上位を拡張 org.mklab.tool.control.system.math.MathematicalFunctionType
すべての実装されたインタフェース:
Serializable, Comparable<MathematicalFunctionType>

public enum MathematicalFunctionType
extends Enum<MathematicalFunctionType>

数学関数の種類を表わす列挙型です。

バージョン:
$Revision: 1.3 $, 2007/04/30
作成者:
koga

列挙型定数の概要
CONJ
          複素共役
EXP
          指数関数
HERMITIAN
          転置
HYPOT
          平方和の平方根
LOG
          自然対数関数
LOG10
          常用対数関数
MAGNITUDE2
          常用対数関数
MOD
          モジラス
POW
          累乗
RECIPROCAL
          逆数
REM
          剰余
SQRT
          平方根
SQUARE
          2乗
TEN_POW
          10の累乗
TRANSPOSE
          転置
 
メソッドの概要
 String getFunction()
          関数を返します。
 String getName()
          名前を返します。
static MathematicalFunctionType valueOf(String name)
          指定した名前を持つこの型の列挙型定数を返します。
static MathematicalFunctionType[] values()
          この列挙型の定数を含む配列を宣言されている順序で返します。
 
クラス java.lang.Enum から継承されたメソッド
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
クラス java.lang.Object から継承されたメソッド
getClass, notify, notifyAll, wait, wait, wait
 

列挙型定数の詳細

EXP

public static final MathematicalFunctionType EXP
指数関数


LOG

public static final MathematicalFunctionType LOG
自然対数関数


LOG10

public static final MathematicalFunctionType LOG10
常用対数関数


MAGNITUDE2

public static final MathematicalFunctionType MAGNITUDE2
常用対数関数


SQUARE

public static final MathematicalFunctionType SQUARE
2乗


SQRT

public static final MathematicalFunctionType SQRT
平方根


POW

public static final MathematicalFunctionType POW
累乗


CONJ

public static final MathematicalFunctionType CONJ
複素共役


RECIPROCAL

public static final MathematicalFunctionType RECIPROCAL
逆数


HYPOT

public static final MathematicalFunctionType HYPOT
平方和の平方根


REM

public static final MathematicalFunctionType REM
剰余


MOD

public static final MathematicalFunctionType MOD
モジラス


TEN_POW

public static final MathematicalFunctionType TEN_POW
10の累乗


TRANSPOSE

public static final MathematicalFunctionType TRANSPOSE
転置


HERMITIAN

public static final MathematicalFunctionType HERMITIAN
転置

メソッドの詳細

values

public static MathematicalFunctionType[] values()
この列挙型の定数を含む配列を宣言されている順序で返します。 このメソッドは次のようにして定数を反復するために使用できます:
for (MathematicalFunctionType c : MathematicalFunctionType.values())
    System.out.println(c);

戻り値:
この列挙型の定数を宣言されている順序で含む配列

valueOf

public static MathematicalFunctionType valueOf(String name)
指定した名前を持つこの型の列挙型定数を返します。 文字列は、この型の列挙型定数を宣言するのに使用した識別子と厳密に 一致している必要があります (余分な空白文字を含めることはできません)。

パラメータ:
name - 返される列挙型定数の名前
戻り値:
指定された名前を持つ列挙型定数
例外:
IllegalArgumentException - 指定された名前を持つ定数を この列挙型が持っていない場合
NullPointerException - 引数が null の場合

getName

public String getName()
名前を返します。

戻り値:
名前

getFunction

public String getFunction()
関数を返します。

戻り値:
関数