org.mklab.nfc.matrix.misc
クラス LinearlySpacedVector
java.lang.Object
org.mklab.nfc.matrix.misc.LinearlySpacedVector
public class LinearlySpacedVector
- extends Object
等間隔で分割されたデータ列を生成するクラスです。
Linearly spaced vector
- バージョン:
- $Revision: 1.10 $
- 作成者:
- koga
メソッドの概要 |
static DoubleMatrix |
create(double x1,
double x2)
x1 とx2 の間を100 等分した点を成分にもつベクトルを返します。 |
static DoubleMatrix |
create(double x1,
double x2,
int splitSize)
x1 とx2 の間を n 等分した点を成分にもつベクトルを返します。 |
static
|
create(E x1,
E x2)
x1 とx2 の間を100 等分した点を成分にもつベクトルを返します。 |
static
|
create(E x1,
E x2,
int splitSize)
x1 とx2 の間を n 等分した点を成分にもつベクトルを返します。 |
クラス java.lang.Object から継承されたメソッド |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
LinearlySpacedVector
public LinearlySpacedVector()
create
public static DoubleMatrix create(double x1,
double x2)
x1
とx2
の間を100
等分した点を成分にもつベクトルを返します。
- パラメータ:
x1
- 始点x2
- 終点
- 戻り値:
- 等間隔で分割されたデータ列 (linearly spaced array)
create
public static <E extends NumericalScalar<E>> NumericalMatrixOperator<E> create(E x1,
E x2)
x1
とx2
の間を100
等分した点を成分にもつベクトルを返します。
- 型パラメータ:
E
- 成分の型- パラメータ:
x1
- 始点x2
- 終点
- 戻り値:
- 等間隔で分割されたデータ列 (linearly spaced array)
create
public static DoubleMatrix create(double x1,
double x2,
int splitSize)
x1
とx2
の間を n
等分した点を成分にもつベクトルを返します。
- パラメータ:
x1
- 始点x2
- 終点splitSize
- 分割数
- 戻り値:
- 等間隔で分割されたデータ列 (linearly spaced array)
create
public static <E extends NumericalScalar<E>> NumericalMatrixOperator<E> create(E x1,
E x2,
int splitSize)
x1
とx2
の間を n
等分した点を成分にもつベクトルを返します。
- 型パラメータ:
E
- 成分の型- パラメータ:
x1
- 始点x2
- 終点splitSize
- 分割数
- 戻り値:
- 等間隔で分割されたデータ列 (linearly spaced array)