関数free_rowvector_memory マニュアル

(The documentation of function free_rowvector_memory)

Last Update: 2021/12/6


◆機能・用途(Purpose)

struct rowvector型構造体のメンバmainの動的メモリを解放する。
Release dynamic memories for member main of a struct rowvector-type structure.


◆形式(Format)

#include <matrix/initialize.h>
inline void free_rowvector_memory(struct rowvector ∗v)


◆引数(Arguments)

v 動的メモリを解放したい構造体のアドレス。
The address of the structure for which the dynamic memories are to be released.


◆使用例(Example)

struct rowvector v=get_rowvector_memory(3);
free_rowvector_memory(&v);


◆補足(Additional remarks)

動的メモリを解放したことが後で分かるように vのメンバallocatedの値が’n’に変更される。
The value of member allocated of v is changed to ’n’ to record that the dynamic memories have been released.