|
||||||||||
前のクラス 次のクラス | フレームあり フレームなし | |||||||||
概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド |
java.lang.Objectorg.mklab.tool.matrix.Hist
public class Hist
ヒストグラムを描画するためのデータを求めるクラスです。
Data for histograms-plot
Bar
コンストラクタの概要 | |
---|---|
Hist()
|
メソッドの概要 | |
---|---|
static List<Matrix> |
hist(Matrix Y)
もし y がベクトルなら、y の最小値と 最大値の間を10分割して、ヒストグラムを描画するためのデータを返します。 |
static List<Matrix> |
hist(Matrix Y,
int size)
size 分割にします。 |
static List<Matrix> |
histColumnWise(Matrix Y_)
もし y が行列なら、列毎に計算します。 |
static List<Matrix> |
histColumnWise(Matrix Y_,
int size)
size 分割にします。 |
static List<Matrix> |
histRowWise(Matrix Y)
もし y が行列なら、行毎に計算します。 |
static List<Matrix> |
histRowWise(Matrix Y,
int size)
size 分割にします。 |
クラス java.lang.Object から継承されたメソッド |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
コンストラクタの詳細 |
---|
public Hist()
メソッドの詳細 |
---|
public static List<Matrix> hist(Matrix Y)
y
がベクトルなら、y
の最小値と 最大値の間を10分割して、ヒストグラムを描画するためのデータを返します。
Y
- データ
public static List<Matrix> hist(Matrix Y, int size)
size
分割にします。
Y
- データsize
- 分割数
public static List<Matrix> histColumnWise(Matrix Y_)
y
が行列なら、列毎に計算します。
Y_
- データ
public static List<Matrix> histColumnWise(Matrix Y_, int size)
size
分割にします。
Y_
- データsize
- 分割数
public static List<Matrix> histRowWise(Matrix Y)
y
が行列なら、行毎に計算します。
Y
- データ
public static List<Matrix> histRowWise(Matrix Y, int size)
size
分割にします。
Y
- データsize
- 分割数
|
||||||||||
前のクラス 次のクラス | フレームあり フレームなし | |||||||||
概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド |