|
||||||||||
前のクラス 次のクラス | フレームあり フレームなし | |||||||||
概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド |
java.lang.Objectorg.mklab.nfc.matrix.misc.LogarithmicallySpacedVector
public class LogarithmicallySpacedVector
対数的に等間隔に分割されたデータ列を生成するクラスです。
Logarithmically spaced vector
コンストラクタの概要 | |
---|---|
LogarithmicallySpacedVector()
|
メソッドの概要 | ||
---|---|---|
static DoubleMatrix |
create(double x1,
double x2)
10^x1 と10^x2 の間を対数的に 50 等分割した点をもつベクトルを返します。 |
|
static DoubleMatrix |
create(double x1,
double x2,
int splitSize)
splitSize 分割した点を返します。 |
|
static
|
create(E x1,
E x2)
10^x1 と10^x2 の間を対数的に 50 等分割した点をもつベクトルを返します。 |
|
static
|
create(E x1,
E x2,
int splitSize)
splitSize 分割した点を返します。 |
クラス java.lang.Object から継承されたメソッド |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
コンストラクタの詳細 |
---|
public LogarithmicallySpacedVector()
メソッドの詳細 |
---|
public static DoubleMatrix create(double x1, double x2)
10^x1
と10^x2
の間を対数的に 50
等分割した点をもつベクトルを返します。
もしx2
がPI
なら 10^x2
とPI
の間を対数的に 等分割した点を求めます。
x1
- 始点x2
- 終点
public static <E extends NumericalScalar<E>> NumericalMatrixOperator<E> create(E x1, E x2)
10^x1
と10^x2
の間を対数的に 50
等分割した点をもつベクトルを返します。
もしx2
がPI
なら 10^x2
とPI
の間を対数的に 等分割した点を求めます。
E
- 成分の型x1
- 始点x2
- 終点
public static DoubleMatrix create(double x1, double x2, int splitSize)
splitSize
分割した点を返します。
x1
- 始点x2
- 終点splitSize
- 分割数
public static <E extends NumericalScalar<E>> NumericalMatrixOperator<E> create(E x1, E x2, int splitSize)
splitSize
分割した点を返します。
E
- 成分の型x1
- 始点x2
- 終点splitSize
- 分割数
|
||||||||||
前のクラス 次のクラス | フレームあり フレームなし | |||||||||
概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド |