Add replace between rows and strings, but this needs some work

This commit is contained in:
AZEN-SGG 2025-03-30 19:44:32 +03:00
parent f4c4a78fa0
commit a7803c4e26
15 changed files with 153 additions and 50 deletions

View 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