Started Task 4
This commit is contained in:
parent
91f3acd62d
commit
edb7e1adea
9 changed files with 306 additions and 0 deletions
20
2025.04.18/04Ex/array_io.h
Normal file
20
2025.04.18/04Ex/array_io.h
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
#ifndef ARRAY_IO_H
|
||||
#define ARRAY_IO_H
|
||||
|
||||
#include "io_status.h"
|
||||
|
||||
io_status read_values_and_derivatives (
|
||||
double * restrict X,
|
||||
double * restrict Y,
|
||||
double * restrict D,
|
||||
const int n,
|
||||
const char * restrict name
|
||||
);
|
||||
void print_values_and_derivatives (
|
||||
const double * restrict X,
|
||||
const double * restrict Y,
|
||||
const double * restrict D,
|
||||
const int n, const int p
|
||||
);
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue