関数unit_directional_rowvector マニュアル

(The documentation of function unit_directional_rowvector)

Last Update: 2021/12/6


◆機能・用途(Purpose)

単位方向ベクトルを行ベクトルとして作成する。
Create a unit directional vector as a row vector.


◆形式(Format)

#include <matrix/initialize.h>
inline struct rowvector unit_directional_rowvector
(const int size,const int column)


◆引数(Arguments)

size 作成する行ベクトルの次元。
The dimension of the row vector to create.
column ベクトルの向きを表す番号。 第column列のみが1でほかが全て0の行ベクトルを作成する。 番号は1から始まるものとする。
A number which represents the direction of the vector; a row vector with 1 in the columnth column and 0 for all the other components is created. Here, the number starts from 1.


◆戻り値(Return value)

第column列のみが1でほかが全て0のsize次元の行ベクトルを表す構造体。 戻り値の各メンバの値は以下のようになる。
A structure which represents a row vector of size dimension, with a value 1 for the columnth column and 0 for all the other components.

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

Value
size 引数sizeの値。
The value of argument size.
main size次元の配列。 main[column-1]\(=1\)とし、 \(i\neq \)column\(-1\)となる全ての\(i\)に対して main[i]\(=0\)とする。
An array of size dimension, with the values main[column-1]\(=1\) and main[i]\(=0\) for all \(i(\neq)\)column\(-1\).
allocated ’y’


◆使用例(Example)

struct rowvector v=unit_directional_rowvector(5,2);

この例では下記の行ベクトルが作成される。
In this example, the row vector shown below is created.
\[\begin{equation*} \begin{pmatrix} 0 & 1 & 0 & 0 & 0 \end{pmatrix} \end{equation*}\]