Убрал параллельность и векторизацию из 14го Задания, начал писать немного иную версию
This commit is contained in:
parent
b66f83f2ee
commit
fb42c48f7d
15 changed files with 206 additions and 214 deletions
|
@ -1,12 +1,14 @@
|
|||
#ifndef ARRAY_IO_H
|
||||
#define ARRAY_IO_H
|
||||
|
||||
#include <stdbool.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);
|
||||
io_status read_matrix(double *a, int n, const char *name, bool transpose);
|
||||
void print_matrix(const double *a, int n, int p, bool transpose);
|
||||
void init_matrix(double *a, int n, int k, bool transpose);
|
||||
void init_identity_matrix(double *a, int n);
|
||||
int read_or_init_matrix(double *a, char *name, int k, int n, bool transpose);
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue