Task 1 was done!
This commit is contained in:
parent
768df4b636
commit
9319f68a39
71 changed files with 249 additions and 166 deletions
26
2025.04.18/01Ex/array_io.c
Normal file
26
2025.04.18/01Ex/array_io.c
Normal file
|
@ -0,0 +1,26 @@
|
|||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include "array_io.h"
|
||||
|
||||
io_status read_values (double * restrict X, double * restrict Y, const int n, const char * restrict name)
|
||||
{
|
||||
FILE *fp;
|
||||
if (!(fp = fopen(name, "r")))
|
||||
return ERROR_OPEN;
|
||||
|
||||
for (int i = 0; i < n; ++i)
|
||||
if (fscanf(fp, "%lf\t%lf", X + i, Y + i) != 2)
|
||||
{ fclose(fp); return ERROR_READ; }
|
||||
|
||||
fclose(fp);
|
||||
return SUCCESS;
|
||||
}
|
||||
|
||||
void print_values (const double * restrict X, const double * restrict Y, const int n, const int p)
|
||||
{
|
||||
int np = (n > p ? p : n);
|
||||
|
||||
for (int i = 0; i < np; i++)
|
||||
printf("f(%lf) = %lf\n", X[i], Y[i]);
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue