Add replace between rows and strings, but this needs some work
This commit is contained in:
parent
f4c4a78fa0
commit
a7803c4e26
15 changed files with 153 additions and 50 deletions
12
2025.04.04/14Ex/array_io.h
Normal file
12
2025.04.04/14Ex/array_io.h
Normal file
|
@ -0,0 +1,12 @@
|
|||
#ifndef ARRAY_IO_H
|
||||
#define ARRAY_IO_H
|
||||
|
||||
#include "io_status.h"
|
||||
#include "init_f.h"
|
||||
|
||||
io_status read_matrix(double *a, int n, const char *name);
|
||||
void print_matrix(const double *a, int n, int p);
|
||||
void init_matrix(double *a, int n, int k);
|
||||
void init_identity_matrix(double *a, int n;)
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue