[C++] 평균, 표준편차 구하기
평균 및 표준편차 계산 함수 1234567891011121314151617181920212223242526272829303132333435363738#include <vector>// 평균 계산 함수template<class T>double Mean(std::vector<T> array){ double sum
평균 및 표준편차 계산 함수 1234567891011121314151617181920212223242526272829303132333435363738#include <vector>// 평균 계산 함수template<class T>double Mean(std::vector<T> array){ double sum
point-in-polygon (PIP) “In computational geometry, the point-in-polygon (PIP) problem asks whether a given point in the plane lies inside, outside, or on the boundary of a polygon.” Wikipedia. 점이 다
DLL 동적 로딩 특정 폴더 내에 다수의 DLL 라이브러리 파일들을 로딩하기 위한 코드다. Header 파일 1234567891011121314151617181920// dllload.h#include <iostream>class DLLLoad{public: DLLLoad() {} ~DLLLoad() {
개요 string 형식의 파일 경로를 이용하여 File Path와 Name을 분리합니다. 1) File Path와 File Name 분리 1234567891011121314#include <iostream>namespace using std;int main(){ string pullPath = "c:\\test\\test.tif";