Добавил исходники Матвея

This commit is contained in:
AZEN-SGG 2025-04-16 15:39:17 +03:00
parent 4c083aa533
commit 91f3acd62d
14 changed files with 745 additions and 0 deletions

View file

@ -0,0 +1,8 @@
#include <math.h>
#include "functions.h"
int equal(double a, double b)
{
if (fabs(a - b) <= EPS * fmax(fabs(a), fabs(b))) return 1;
return 0;
}