Matrix<float> 型から Vector<float> 型へ,または, Matrix<complex<float> > 型から Vector<complex<float> > 型へ変換を行う.
無し.
どんなときに使うのか
Matrix<float> 型を Vector<float> 型に,Matrix<complex<float> > 型を Vector<complex<float> > 型に変換する際に用いる.
入力
: any .ただし,サポートする型は Matrix<float> または Matrix<complex<float> > 型.
出力
: any .ただし,サポートする型は Vector<float> または Vector<complex<float> > 型.
パラメータ
パラメータ名 |
型 |
デフォルト値 |
単位 |
説明 |
METHOD |
reshape |
|||
RESHAPE_ORDER |
row |
reshapeの方法.row, column から選択する. |
||
ACCUMULATE_METHOD |
row_sum |
accumulateの方法.row_sum, col_sum, row_avg, col_avg から選択する. |
||
DEBUG |
false |
変換状況を出力するかどうかの選択. |
: string 型. Matrix から Vector への変換方法を指定する.reshape, accumulate から選択. デフォルトは reshape.
: string 型. reshapeの方法を指定する.パラメータ METHOD が reshape の時のみ有効. row, column から選択. row が選択されると,行順にreshapeされ, coulmn が選択されると,列順にreshapeされる. デフォルトは row.
: string 型. accumulateの方法を指定する.パラメータ METHOD が accumulate の時のみ有効. row_sum, col_sum, row_avg, col_avg から選択. row_sum は行の合計, col_sum は列の合計, row_avg は行の平均, col_avg は列の平均をする. デフォルトは row_sum.
: bool 型. デフォルトは false. trueが与えられると, 変換状況が標準出力に出力される.
INPUT |
OUTPUT |
METHOD |
RESHAPE _ORDER |
ACCUMULATE _METHOD |
|||
type |
size |
type |
size |
||||
(NxM) |
reshape |
row |
- |
(1) |
|||
column |
(2) |
||||||
N |
row_sum |
(3) |
|||||
accumulate |
- |
row_avg |
(4) |
||||
M |
col_sum |
(5) |
|||||
NxM |
col_avg |
(6) |
|||||
(NxM) |
reshape |
row |
- |
||||
column |
|||||||
N |
row_sum |
||||||
accumulate |
- |
row_avg |
|||||
M |
col_sum |
||||||
col_avg |
<例>
INPUT:
\[ \left[ \begin{array}{cc} 1 & 2\\ 3 & 4\\ 5 & 6\\ \end{array} \right] \] |
↓
OUTPUT(1): $<$ 1 2 3 4 5 6 $>$
OUTPUT(2): $<$ 1 3 5 2 4 6 $>$
OUTPUT(3): $<$ 3 7 11 $>$ ← $<$ 1+2 3+4 5+6 $>$
OUTPUT(4): $<$ 1.5 3.5 5.5 $>$ ← $<$ (1+2)/2 (3+4)/2 (5+6)/2 $>$
OUTPUT(5): $<$ 9 12 $>$ ← $<$ 1+3+5 2+4+6 $>$
OUTPUT(6): $<$ 3 4 $>$ ← $<$ (1+3+5)/3 (2+4+6)/3 $>$