2nd_Sem_Bogachev/2025.05.02/06Ex/polynom.h
2025-05-07 22:33:14 +03:00

6 lines
148 B
C

#ifndef POLYNOM_H
#define POLYNOM_H
double construct_poly (const double x_0, const int n, const double * restrict X, double * restrict Y);
#endif