#include <iostream>
#include <cosan/preprocessing/normalizer.h>
#include <vector>
Go to the source code of this file.
◆ main()
Definition at line 14 of file NormalizerTest.cpp.
26 std::cout << normalizer.normalize(X1) <<
'\n' << std::endl;
34 std::cout << normalizer.normalize(X2) <<
'\n' << std::endl;
42 std::cout << normalizer.normalize(X3) <<
'\n' << std::endl;
43 std::cout << normalizer1.normalize(X3) <<
'\n' << std::endl;
44 std::cout << normalizerinf.normalize(X3) <<
'\n' << std::endl;
51 std::cout << normalizer.normalize(X4) <<
'\n' << std::endl;
53 std::vector<double> values= {-1, 1, 0};
56 std::cout << normalizer.normalize(Eigen::Map<const EigenMatrix>(values.data(), 1, 3)) <<
'\n' << std::endl;