|
||||||||||
| 前のクラス 次のクラス | フレームあり フレームなし | |||||||||
| 概要: 入れ子 | 列挙型定数 | フィールド | メソッド | 詳細: 列挙型定数 | フィールド | メソッド | |||||||||
java.lang.Objectjava.lang.Enum<MathematicalFunctionType>
org.mklab.tool.control.system.math.MathematicalFunctionType
public enum MathematicalFunctionType
数学関数の種類を表わす列挙型です。
| 列挙型定数の概要 | |
|---|---|
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 |
| 列挙型定数の詳細 |
|---|
public static final MathematicalFunctionType EXP
public static final MathematicalFunctionType LOG
public static final MathematicalFunctionType LOG10
public static final MathematicalFunctionType MAGNITUDE2
public static final MathematicalFunctionType SQUARE
public static final MathematicalFunctionType SQRT
public static final MathematicalFunctionType POW
public static final MathematicalFunctionType CONJ
public static final MathematicalFunctionType RECIPROCAL
public static final MathematicalFunctionType HYPOT
public static final MathematicalFunctionType REM
public static final MathematicalFunctionType MOD
public static final MathematicalFunctionType TEN_POW
public static final MathematicalFunctionType TRANSPOSE
public static final MathematicalFunctionType HERMITIAN
| メソッドの詳細 |
|---|
public static MathematicalFunctionType[] values()
for (MathematicalFunctionType c : MathematicalFunctionType.values()) System.out.println(c);
public static MathematicalFunctionType valueOf(String name)
name - 返される列挙型定数の名前
IllegalArgumentException - 指定された名前を持つ定数を
この列挙型が持っていない場合
NullPointerException - 引数が null の場合public String getName()
public String getFunction()
|
||||||||||
| 前のクラス 次のクラス | フレームあり フレームなし | |||||||||
| 概要: 入れ子 | 列挙型定数 | フィールド | メソッド | 詳細: 列挙型定数 | フィールド | メソッド | |||||||||