Root Finder  1.0
Using various numerical methods
Loading...
Searching...
No Matches
functions.h
Go to the documentation of this file.
1/*
2@Author: Gilbert Young
3@Time: 2024/09/19 01:47
4@File_name: functions.h
5@IDE: VSCode
6@Formatter: Clang-Format
7@Description: Declaration of the function f(x) and its derivative f'(x).
8*/
9
10#ifndef FUNCTIONS_H
11#define FUNCTIONS_H
12
13long double f(long double x);
14long double f_prime(long double x);
15
16#endif // FUNCTIONS_H
long double f(long double x)
Definition functions.cpp:13
long double f_prime(long double x)
Definition functions.cpp:19