Create Linux version for check
This commit is contained in:
parent
62be214e9d
commit
25b66d2372
21 changed files with 1076 additions and 3 deletions
16
2025.03.07/Linux/array_io.h
Normal file
16
2025.03.07/Linux/array_io.h
Normal file
|
@ -0,0 +1,16 @@
|
|||
#ifndef ARRAY_IO_H
|
||||
#define ARRAY_IO_H
|
||||
|
||||
#include "io_status.h"
|
||||
#include "init_f.h"
|
||||
|
||||
io_status read_sq_matrix(double *a, int n, const char *name);
|
||||
void print_sq_matrix(const double *a, int n, int p);
|
||||
void init_sq_matrix(double *a, int n, int k);
|
||||
|
||||
io_status read_matrix(double *a, int n, int m, const char *name);
|
||||
void print_matrix(const double *a, int n, int m, int p);
|
||||
void init_matrix(double *a, int n, int m, int k);
|
||||
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue