Table-and-Graph-Libs/graphs.cpp
2022-07-14 01:44:17 -07:00

206 lines
4.3 KiB
C++

// Teal Dulcet, CS546
// Compile: g++ -Wall -g -O3 -std=c++17 graphs.cpp -o graphs
// Run: ./graphs
#include <cctype>
#include <array>
#include <vector>
#include "graphs.hpp"
using namespace std;
constexpr long double afunction(long double x)
{
return x + 1;
}
constexpr long double function1(long double x)
{
return 2 * x;
}
constexpr long double function2(long double x)
{
return pow(x, 2);
}
constexpr long double function3(long double x)
{
return sin(x);
}
constexpr long double function4(long double x)
{
return cos(x);
}
constexpr long double function5(long double x)
{
return tan(x);
}
int main()
{
const size_t height = 160;
const size_t width = 160;
const long double xmin = -20;
const long double xmax = 20;
const long double ymin = -20;
const long double ymax = 20;
const size_t rows = 10;
const size_t columns = 2;
// Output single array as plot
cout << "\nOutput array as plot\n\n";
{
long double **array;
array = new long double *[rows];
for (unsigned int i = 0; i < rows; ++i)
array[i] = new long double[columns];
for (unsigned int i = 0; i < rows; ++i)
for (unsigned int j = 0; j < columns; ++j)
array[i][j] = i + j; // rand();
graphs::options aoptions;
for (unsigned int k = 0; k < size(graphs::styles); ++k)
{
aoptions.style = k;
graphs::array(height, width, xmin, xmax, ymin, ymax, rows, array, aoptions);
}
if (array != nullptr)
{
for (unsigned int i = 0; i < rows; ++i)
delete[] array[i];
delete[] array;
}
}
{
array<array<long double, columns>, rows> aarray;
for (unsigned int i = 0; i < rows; ++i)
for (unsigned int j = 0; j < columns; ++j)
aarray[i][j] = i + j; // rand();
graphs::options aoptions;
for (unsigned int k = 0; k < size(graphs::styles); ++k)
{
aoptions.style = k;
graphs::array(height, width, xmin, xmax, ymin, ymax, aarray, aoptions);
}
}
{
vector<vector<long double>> array(rows, vector<long double>(columns));
for (unsigned int i = 0; i < rows; ++i)
for (unsigned int j = 0; j < columns; ++j)
array[i][j] = i + j; // rand();
graphs::options aoptions;
for (unsigned int k = 0; k < size(graphs::styles); ++k)
{
aoptions.style = k;
graphs::array(height, width, xmin, xmax, ymin, ymax, array, aoptions);
}
}
// Output single function as graph
cout << "\nOutput single function as graph\n\n";
{
graphs::options aoptions;
for (unsigned int k = 0; k < size(graphs::styles); ++k)
{
aoptions.style = k;
graphs::function(height, width, xmin, xmax, ymin, ymax, afunction, aoptions);
}
}
{
function<long double(long double)> afunction = [](auto x)
{ return x + 1; };
graphs::options aoptions;
for (unsigned int k = 0; k < size(graphs::styles); ++k)
{
aoptions.style = k;
graphs::function(height, width, xmin, xmax, ymin, ymax, afunction, aoptions);
}
}
// Output multiple functions as graph
cout << "\nOutput multiple functions as graph\n\n";
{
function<long double(long double)> functions[] = {function1, function2};
graphs::options aoptions;
for (unsigned int k = 0; k < size(graphs::styles); ++k)
{
aoptions.style = k;
graphs::functions(height, width, xmin, xmax, ymin, ymax, 2, functions, aoptions);
}
}
{
function<long double(long double)> functions[] = {[](auto x)
{ return 2 * x; },
[](auto x)
{ return pow(x, 2); }};
graphs::options aoptions;
for (unsigned int k = 0; k < size(graphs::styles); ++k)
{
aoptions.style = k;
graphs::functions(height, width, xmin, xmax, ymin, ymax, 2, functions, aoptions);
}
}
{
const long double xmin = -(2 * M_PI);
const long double xmax = 2 * M_PI;
const long double ymin = -4;
const long double ymax = 4;
function<long double(long double)> functions[] = {function3, function4, function5};
graphs::options aoptions;
aoptions.axisunitslabel = false;
// graphs::options aoptions{.axisunitslabel = false};
for (unsigned int k = 0; k < size(graphs::styles); ++k)
{
aoptions.style = k;
graphs::functions(height, width, xmin, xmax, ymin, ymax, 3, functions, aoptions);
}
/* aoptions.style = 2;
for (unsigned int k = 10; k < 300; ++k)
{
cout << "\e[1;1H"
<< "\e[2J";
graphs::functions(k, k, xmin, xmax, ymin, ymax, 3, functions, aoptions);
usleep(200000);
} */
}
return 0;
}