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

コンストラクタの概要
LinearlySpacedVector()
           
 
メソッドの概要
static DoubleMatrix create(double x1, double x2)
          x1x2の間を100 等分した点を成分にもつベクトルを返します。
static DoubleMatrix create(double x1, double x2, int splitSize)
          x1x2の間を n等分した点を成分にもつベクトルを返します。
static
<E extends NumericalScalar<E>>
NumericalMatrixOperator<E>
create(E x1, E x2)
          x1x2の間を100 等分した点を成分にもつベクトルを返します。
static
<E extends NumericalScalar<E>>
NumericalMatrixOperator<E>
create(E x1, E x2, int splitSize)
          x1x2の間を 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)
x1x2の間を100 等分した点を成分にもつベクトルを返します。

パラメータ:
x1 - 始点
x2 - 終点
戻り値:
等間隔で分割されたデータ列 (linearly spaced array)

create

public static <E extends NumericalScalar<E>> NumericalMatrixOperator<E> create(E x1,
                                                                               E x2)
x1x2の間を100 等分した点を成分にもつベクトルを返します。

型パラメータ:
E - 成分の型
パラメータ:
x1 - 始点
x2 - 終点
戻り値:
等間隔で分割されたデータ列 (linearly spaced array)

create

public static DoubleMatrix create(double x1,
                                  double x2,
                                  int splitSize)
x1x2の間を n等分した点を成分にもつベクトルを返します。

パラメータ:
x1 - 始点
x2 - 終点
splitSize - 分割数
戻り値:
等間隔で分割されたデータ列 (linearly spaced array)

create

public static <E extends NumericalScalar<E>> NumericalMatrixOperator<E> create(E x1,
                                                                               E x2,
                                                                               int splitSize)
x1x2の間を n等分した点を成分にもつベクトルを返します。

型パラメータ:
E - 成分の型
パラメータ:
x1 - 始点
x2 - 終点
splitSize - 分割数
戻り値:
等間隔で分割されたデータ列 (linearly spaced array)