Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 형변환
- 코드블럭 오류
- 본즈앤올
- standford University
- Greedy
- coursera
- 나동빈님
- #define
- regression problem
- algorithm
- classification problem
- Runtime constants
- 기계학습
- const
- sizeof()
- Andrew Ng
- CLion
- C++
- #endif
- compile time constants
- Machine Learning
- 기계학습 기초
- 이코테
- 연산자
- 프로그래밍
- 홍정모님
- 학습 알고리즘
- 코딩테스트
- decimal
- 단항연산자
Archives
- Today
- Total
wellcome_공부일기
Matlab| insert cell array to structure 본문
S = struct('Name', {'bob', 'lea', 'pat'}, 'Birth_year', {1990, 1988, 2021})
[S.color] = deal('blue','red','green')
C = {'small', 'large', 'medium'};
[S.tshirtsize] = C{:}
cell2struct(UABabble(iunit).info, extraction_index, EI);
https://www.mathworks.com/matlabcentral/answers/379250-adding-a-new-field-to-a-struct-array
Comments