일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- 우리들교회
- WebGL
- 김양재
- Deep learning
- 빅데이터
- openCV
- data science
- 인공지능
- 빅 데이타
- nodeJS
- Big Data
- node.js
- MongoDB
- Machine Learning
- c++
- 빅 데이터
- 확률
- Artificial Intelligence
- 딥러닝
- 몽고디비
- Statistics
- No SQL
- 데이터 과학
- 빅데이타
- 주일설교
- 김양재 목사님
- 김양재 목사
- 통계
- R
- probability
- Today
- Total
목록Programming (202)
Scientific Computing & Data Science
// // main.cpp // // Created by gchoi on 2014. 4. 30.. // Copyright (c) 2014년 gchoi. All rights reserved. // #include #include using namespace std; int main( int argc , const char * argv []) { string fruit1 , fruit2 ; fruit1 = "banana"; fruit2 = "apple"; fruit1.append (fruit2); cout
"CVector.h" // // CVector.h // // Created by gchoi on 2014. 5. 9.. // Copyright (c) 2014년 gchoi. All rights reserved. // #ifndef Test_005_CVector_h #define Test_005_CVector_h #include using std::istream; using std::ostream; class Vector { private: double* Vec; // Elements of vector int Len; // Length of vector public: Vector( int N = 1, double Value = 0.0 ); Vector( double Array[], int N ); Vect..
// // main.cpp // // Created by gchoi on 2014. 5. 8.. // Copyright (c) 2014년 gchoi. All rights reserved. // #include #include #include using namespace std; int gcm(int x, int y); void gcmprint(int x, int y); int main(int argc, const char * argv[]) { gcmprint(10, 5); gcmprint(52, 16); return 0; } int gcm(int x, int y) { int z; while ((z = x % y) != 0) { x = y; y = z; } return y; } void gcmprint(i..
// // main.cpp // // Created by gchoi on 2014. 5. 8.. // Copyright (c) 2014년 gchoi. All rights reserved. // #include #include #include const int MAX_SIZE = 2048; using namespace std; int main(int argc, const char * argv[]) { string filename1 = "{YOUR_FILE_PATH}/img0.jpg"; string filename2 = "{YOUR_FILE_PATH}/img1.jpg"; char buff[MAX_SIZE]; ifstream ifs(filename1.c_str(), ios::in | ios::binary); ..
// // main.cpp // // Created by gchoi on 2014. 5. 8.. // Copyright (c) 2014년 gchoi. All rights reserved. // #include #include #include const int MAX_SIZE = 256; using namespace std; int main(int argc, const char * argv[]) { ifstream fin("/Users/gchoi/Documents/Xcode/Test-003/Test-003/test1.txt"); char c; int n; float f; char cc[MAX_SIZE]; fin.getline(cc, MAX_SIZE); cout c >> n >> f; cout
// // main.cpp // // Created by gchoi on 2014. 5. 8.. // Copyright (c) 2014년 gchoi. All rights reserved. // #include #include using namespace std; int main(int argc, const char * argv[]) { ofstream fout("{FILE_PATH}/test.txt"); if(!fout) { cout
// // main.cpp // Test-003 // // Created by gchoi on 2014. 5. 8.. // Copyright (c) 2014년 gchoi. All rights reserved. // #include using namespace std; int main(int argc, const char * argv[]) { int num[] = {88, 67, 77, 93, 23, 51, 32, 33, 76, 52}; int nElem = sizeof(num)/sizeof(int); int myMin; int tmp, dummy; tmp = 0; for(int i = 0 ; i < nElem - 1 ; i++) { myMin = num[i]; tmp = 0; for(int j = i+1..
// // main.cpp // Test-002 // // Created by gchoi on 2014. 5. 6.. // Copyright (c) 2014년 gchoi. All rights reserved. // #include #include using namespace std; ////////////////////////////////////////////////// class Student { private: int no; string name; public: Student(); Student(int no, string name); ~Student(); protected: void setNo(int no); void setName(string name); int getNo(); string get..
"student.h" // // student.h // Test-001 // // Created by gchoi on 2014. 5. 6.. // Copyright (c) 2014년 gchoi. All rights reserved. // #ifndef Test_001_student_h #define Test_001_student_h #include #include using namespace std; class Student { private: int no; string name; int eng; int math; public: Student(); Student(int no, string name, int eng, int math); void setNo(int no); void setName(string..
"student.h" // // student.h // Test-001 // // Created by gchoi on 2014. 5. 6.. // Copyright (c) 2014년 gchoi. All rights reserved. // #ifndef Test_001_student_h #define Test_001_student_h #include #include using namespace std; class Student { private: int no; string name; int eng; int math; public: void setNo(int no); void setName(string name); void setEng(int eng); void setMath(int math); int ge..