Revision ad8e9d4f15917a78050e26fb7a846e17f90636e6 authored by Merve Asiler on 03 July 2024, 20:45:15 UTC, committed by GitHub on 03 July 2024, 20:45:15 UTC
1 parent ba0ff13
Raw File
CommonUtils.h
// @author Merve Asiler

#pragma once

#include <vector>
#include <string>
#include <cstdlib>

using namespace std;

vector<string> split(string inputStr, string delimiter);

void fetchStatistics(string inpFileName, string outFileName, bool checkQuality);

tuple<vector<vector<int>>, vector<vector<double>>> kMeans(vector<double> numberSet, int k);
back to top