関数transpose_rowvector2columnvector マニュアル

(The documentation of function transpose_rowvector2columnvector)

Last Update: 2021/12/6


◆機能・用途(Purpose)

行ベクトルの転置行列を計算する(列ベクトルになる)。
Calculate the transpose of a row vector; the result is a column vector.


◆形式(Format)

#include <matrix/operation.h>
inline struct columnvector transpose_rowvector2columnvector
(const struct rowvector v)


◆引数(Arguments)

v 元の行ベクトル\(\myvector{v}\)。
The original row vector \(\myvector{v}\).


◆戻り値(Return value)

\(\myvector{v}\)の転置行列(列ベクトル)を表す構造体。 戻り値のメンバの値は以下のようになる。
A structure which represents the transpose (a column vector) of \(\myvector{v}\). The values of members of the return value are as follows.

戻り値のメンバ
Member of the return value

Value
size v.size
各\(i\)に対するmain[i]
main[i] for each \(i\)
v.main[i]
allocated ’y’


◆使用例(Example)

struct rowvector v;
struct columnvector w=transpose_rowvector2columnvector(v);