#include <iostream>
#include <vector>
#include <set>
#include <tuple>
#include <Eigen/Dense>
#include <math.h>
#include <cosan/io/utils.h>
Go to the source code of this file.
|
| int | main (int argc, char *argv[]) |
| |
◆ main()
| int main |
( |
int |
argc, |
|
|
char * |
argv[] |
|
) |
| |
Definition at line 8 of file test2.cpp.
10 std::string SummaryMessageX;
11 std::vector<std::vector<uint>> IdxpinfX,IdxminfX,IdxmissingX;
12 std::set<uint> colCatX;
13 uint rowsX = 0,colsX = 0;
14 std::vector<std::string> svaluesX;
17 std::cout<<rowsX<<
" "<<colsX<<
" "<<std::endl;
18 for (
auto each : IdxpinfX) {std::cout<<each[0]<<
" "<<each[1]<<std::endl;}
19 for (
auto each : IdxminfX) {std::cout<<each[0]<<
" "<<each[1]<<std::endl;}
20 for (
auto each : IdxmissingX) {std::cout<<each[0]<<
" "<<each[1]<<std::endl;}
21 for (
auto each : colCatX) {std::cout<<each<<std::endl;}
22 for (
auto each : svaluesX) {std::cout<<each<<std::endl;}
23 std::cout<<X<<std::endl;