일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- KNeighborsClassifier
- 데이터전문기관
- discrete_scatter
- vscode
- web 개발
- web 사진
- 자료구조
- 결합전문기관
- web 용어
- web
- 웹 용어
- classification
- java역사
- cudnn
- mglearn
- 머신러닝
- tensorflow
- pycharm
- 재귀함수
- C언어
- inorder
- Keras
- 대이터
- CES 2O21 참가
- bccard
- html
- paragraph
- broscoding
- CES 2O21 참여
- postorder
- Today
- Total
목록전체 글 (688)
bro's coding
명령어 ls 현재 위치에서 파일과 디렉토리 보기 lists ls -a / la 숨긴 파일과 디렉토리도 보기 list -all ls -l / ll 파일과 디렉토리의 정보도 보기 list -long pwd 현재 디렉토리 출력 present working directory cd [dir] 디렉토리 이동 change directory cd .. 이전 디렉토리로 이동 cd 사용자 홈으로 이동 /home/bro cat 텍스트 파일을 화면에 출력 concatenate more 텍스트 파일을 페이지별로 출력 less 텍스트 파일을 페이지별로 출력 끝 표시 gedit 텍스트 에디터 실행 gedit .bashrc /터미널 사용 불가 gedit & 텍스트 에디터 실행 후 리턴 gedit .bashrc& /터미널 사용 가능 ..
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/cvQg3n/btqCIEtvqv1/7Aa6ODIO3lD2A2sDNiSGXk/img.png)
LINUX Programming환경 세팅하기 더보기 필요한 프로그램 1. vm ware : Window OS상에 가상의 머신을 작동시켜 linux OS를 작동시킨다. https://www.techspot.com/downloads/189-vmware-workstation-for-windows.html 2. ubuntu : linux OS 파일 https://ubuntu.com/download/desktop
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/cbFL8p/btqCD9NyQjl/CGiwr3iu7bP8WCMksrsfK1/img.png)
#define _CRT_SECURE_NO_WARNINGS #include #include #include void matMaker(int mat1[5][5], int mat2[3][3]) { int num = 1; for (int i = 0; i < 5; i++) { for (int j = 0; j < 5; j++) { mat1[i][j] = i * 5 + j; if (i < 3 && j < 3) { mat2[i][j] = num % 2; num++; } } } } void matmul(int mat1[5][5], int mat2[5][5], int result[5][5]) { for (int i = 0; i < 5; i++) { for (int j = 0; j < 5; j++) { result[i][j..
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/bXTxfw/btqCAOQ75GC/5zxe3Qt2Sl27oANw6V4lVK/img.png)
#define _CRT_SECURE_NO_WARNINGS #include #include void insert(int mat1[4][3], int mat2[3][2]) { for (int i = 0; i < 4; i++) { for (int j = 0; j < 3; j++) { mat1[i][j] = i * 3 + j; if (i < 3 && j < 2) { scanf("%d", &mat2[i][j]); } } } for (int i = 0; i < 4; i++) { for (int j = 0; j < 3; j++) { printf(" %3d", mat1[i][j]); } puts(""); } puts(""); puts(""); for (int i = 0; i < 3; i++) { for (int j =..
#include #include void* next_item(void *n) { int *p = (int*)n; return p + 1; } int main() { int num[] = { 1,2,3,4,5 }; int*p = (int*)next_item(num); printf("%d\n%d", *p, (int*)next_item(&num[2])); return 0; }
#define _CRT_SECURE_NO_WARNINGS #include #include #include typedef struct student { char name[64]; int id; double score; void(*display)(struct student); }student; void myprint(student s) { printf("%s> %d , %.2f\n", s.name, s.id, s.score); } int main() { int num; scanf("%d", &num); student *boys = (student*)malloc(sizeof(student)*num); // student boys[3]; char lines[3][100] = { "did,1,53.3","jad,..
#include memset(&boy,0,sizeof(student)); memcpy(&boy2&boy1,sizeof(student));//boy1->boy2 memcpy(boys+1,boys,sizeof(student));//boy1->boy2 (mem) = memory