関数get_columnvector_memory マニュアル

(The documentation of function get_columnvector_memory)

Last Update: 2021/12/6


◆機能・用途(Purpose)

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


◆形式(Format)

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


◆引数(Arguments)

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


◆戻り値(Return value)

size次元の空の(値が未設定の)列ベクトルを表す構造体。 戻り値の各メンバの値は以下のようになる。
A structure which represents an empty column vector (i.e., a column 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 columnvector v=get_columnvector_memory(3);