Add dist ans Task 5 is done!

This commit is contained in:
AZEN-SGG 2025-04-17 21:56:31 +03:00
parent 4a5c5ea41e
commit 2f21a20fd1
21 changed files with 970 additions and 37 deletions

View file

@ -0,0 +1,22 @@
#ifndef ARRAY_IO_H
#define ARRAY_IO_H
#include "io_status.h"
io_status read_values (double * restrict X, double * restrict Y, const int n, const char * restrict name);
void print_values (const double * restrict X, const double * restrict Y, const int n, const int p);
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