|
||||||||||
| 前のクラス 次のクラス | フレームあり フレームなし | |||||||||
| 概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド | |||||||||
java.lang.Objectorg.mklab.tool.control.LinearSystemFactory
public class LinearSystemFactory
線形システムのインスタンスを生成するFactoryクラスです.
| コンストラクタの概要 | |
|---|---|
LinearSystemFactory()
|
|
| メソッドの概要 | |
|---|---|
static ProperLinearSystem |
createConstant(Matrix gain)
定数行列から線形システム(定数システム)を生成します。 |
static ProperLinearSystem |
createLinearSystem(Matrix a,
Matrix b,
Matrix c,
Matrix d)
状態空間表現の係数行列から線形システムを生成します。 |
static LinearSystem |
createLinearSystem(Matrix a,
Matrix b,
Matrix c,
Matrix d,
Matrix e)
係数行列から線形システムを生成します。 |
static LinearSystem |
createLinearSystem(Matrix a,
Matrix b,
Matrix c,
Matrix d,
Matrix e,
boolean isDescriptorForm)
係数行列からisDescriptorFormに応じて,ディスクリプタ形式or状態空間表現で線形システムを生成します. |
static LinearSystem |
createLinearSystem(RationalPolynomial transferFunction)
1入力1出力システムの伝達関数から線形システムを生成します。 |
static LinearSystem |
createLinearSystem(RationalPolynomialMatrix transferFunctionMatrix)
伝達関数行列から線形システムを生成します。 |
| クラス java.lang.Object から継承されたメソッド |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| コンストラクタの詳細 |
|---|
public LinearSystemFactory()
| メソッドの詳細 |
|---|
public static ProperLinearSystem createLinearSystem(Matrix a,
Matrix b,
Matrix c,
Matrix d)
a - システム行列b - 入力行列c - 出力行列d - ゲイン行列
public static LinearSystem createLinearSystem(RationalPolynomial transferFunction)
transferFunction - 1入力1出力システムの伝達関数(有理多項式)
public static LinearSystem createLinearSystem(RationalPolynomialMatrix transferFunctionMatrix)
transferFunctionMatrix - 伝達関数行列(有理多項式行列)
public static LinearSystem createLinearSystem(Matrix a,
Matrix b,
Matrix c,
Matrix d,
Matrix e)
a - 状態行列b - ゲイン行列c - 出力行列d - ゲイン行列e - ディスクリプター行列
public static LinearSystem createLinearSystem(Matrix a,
Matrix b,
Matrix c,
Matrix d,
Matrix e,
boolean isDescriptorForm)
a - 状態行列b - ゲイン行列c - 出力行列d - ゲイン行列e - ディスクリプタ行列isDescriptorForm - ディスクリプタ形式で求めるならばtrue
public static ProperLinearSystem createConstant(Matrix gain)
gain - 定数行列
|
||||||||||
| 前のクラス 次のクラス | フレームあり フレームなし | |||||||||
| 概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド | |||||||||