関数get_rowvector_memory マニュアル

(The documentation of function get_rowvector_memory)

Last Update: 2021/12/6


◆機能・用途(Purpose)

行ベクトルの動的メモリを確保する。
Allocate dynamic memories for a row vector.


◆形式(Format)

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


◆引数(Arguments)

size 作成する行ベクトルの次元。
The dimension of the row vector to create.


◆戻り値(Return value)

size次元の空の(値が未設定の)行ベクトルを表す構造体。 戻り値の各メンバの値は以下のようになる。
A structure which represents an empty row vector (i.e., a row vector with values not set) of size dimension. The values of members of the return value are as follows.

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

Value
size 引数sizeの値。
The value of argument size.
main size次元の配列として動的メモリ確保のみを行ったもの。 各配列要素の値は設定しない。
An array of size dimension for which only the dynamic allocations of memories were completed, without setting the values of array components.
allocated ’y’


◆使用例(Example)

struct rowvector v=get_rowvector_memory(3);