関数free_LU_memory マニュアル

(The documentation of function free_LU_memory)

Last Update: 2021/12/6


◆機能・用途(Purpose)

struct LU型構造体のメンバL,U,pivotの動的メモリを解放する。
Release dynamic memories for members L, U, and pivot of a struct LU-type structure.


◆形式(Format)

#include <matrix/initialize.h>
inline void free_LU_memory(struct LU ∗LUdecomposition)


◆引数(Arguments)

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


◆使用例(Example)

struct matrix A;
struct LU A_LU=LU_decomposition(A);
free_LU_memory(&A_LU);