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
- matplotlib
- 리눅스
- MySQL
- 파이썬
- 독후감
- python visualization
- Linux
- Python
- Blog
- 매틀랩
- SQL
- 통계학
- Tistory
- MATLAB
- 서평
- 티스토리
- Visualization
- 딥러닝
- 월간결산
- Pandas
- Google Analytics
- 시각화
- 한빛미디어
- tensorflow
- 텐서플로
- 서평단
- Ga
- 파이썬 시각화
- 블로그
- 한빛미디어서평단
Archives
- Today
- Total
목록분류 전체보기 (596)
pbj0812의 코딩 일기
[MATLAB] 파일 저장시 해상도 높이기
fname=['파일명.jpg'] print('-djpeg',fname,'-r해상도')
ComputerLanguage_Program/MATLAB(OCTAVE)
2018. 9. 3. 23:30
[MATLAB] color 라벨에 이름 붙이기
ex) figure; colormap(jet(5)) labels={'A', 'B', 'C', 'D', 'E'}; lcolorbar(labels)
ComputerLanguage_Program/MATLAB(OCTAVE)
2018. 9. 3. 23:29
[MATLAB] colorbar 뒤집기
h=colorbar;set(h,'YDir','reverse');
ComputerLanguage_Program/MATLAB(OCTAVE)
2018. 9. 3. 23:29
[MATLAB] 격자에 맞는 그림 그리기
axis image
ComputerLanguage_Program/MATLAB(OCTAVE)
2018. 9. 3. 23:28
[MATLAB] 그림에 text 넣기(여러줄)
strl(1)={'~'};strl(2)={'~'}text(x좌표,y좌표,strl);
ComputerLanguage_Program/MATLAB(OCTAVE)
2018. 9. 3. 23:25
[MATLAB] colorbar에 이름넣기
hd=colorbar;set(get(hd,'title'),'title'),'string','바꿀이름','기타옵션')
ComputerLanguage_Program/MATLAB(OCTAVE)
2018. 9. 3. 23:25
[MATLAB] 텍스트 글씨 굵게
ex xlabel('\bf{~~~~~~~}') num2str이랑 혼용할때는 '랑 , 잘 이용해서 쓰기
ComputerLanguage_Program/MATLAB(OCTAVE)
2018. 9. 3. 23:24
[MATLAB] o플롯시 안쪽 동그라미 색깔 지정
plot(x,y,'o','MarkerFaceColor','b')
ComputerLanguage_Program/MATLAB(OCTAVE)
2018. 9. 3. 23:23
[MATLAB] colorbar 저장법1
1. colorbar 임의 수정2. mycmap=get(gcf,'colormap')3. save('MyColormaps','mycmap')4. set(figure,'colormaps',mycmap)
ComputerLanguage_Program/MATLAB(OCTAVE)
2018. 9. 3. 23:23