/*-----------------------------------------------------
グラム・シュミットの正規直交化法
Gram-Schmidt orhonormalisation
main.h
-----------------------------------------------------*/
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <time.h>
#define DIM 3 // 行列の大きさ u[DIM][DIM], size of matrix
extern void gram_schmidt_orth( double u[DIM][DIM], double e[DIM][DIM] );