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
- Tistory
- Blog
- 시각화
- SQL
- 블로그
- matplotlib
- Ga
- 월간결산
- 매틀랩
- Python
- 티스토리
- Linux
- MySQL
- 딥러닝
- 리눅스
- python visualization
- 한빛미디어서평단
- 한빛미디어
- Google Analytics
- MATLAB
- 독후감
- Pandas
- 서평단
- 통계학
- 텐서플로
- 파이썬
- 서평
- Visualization
- tensorflow
- 파이썬 시각화
Archives
- Today
- Total
목록colorbar (6)
pbj0812의 코딩 일기
[MATLAB] colorbar 뒤집기
h=colorbar;set(h,'YDir','reverse');
ComputerLanguage_Program/MATLAB(OCTAVE)
2018. 9. 3. 23:29
[MATLAB] colorbar에 이름넣기
hd=colorbar;set(get(hd,'title'),'title'),'string','바꿀이름','기타옵션')
ComputerLanguage_Program/MATLAB(OCTAVE)
2018. 9. 3. 23:25
[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
[MATLAB] colorbar 크기 설정
fig1=figure;left=100;bottom=100;width=20;height=500;pos=[left bottom width height];axis offcolorbar([0.1 0.1 0.7 0.8])set(fig1,'outerPosition',pos)
ComputerLanguage_Program/MATLAB(OCTAVE)
2018. 9. 3. 23:22
[MATLAB] colorbar 저장법2
cmap=jet;cmap=[0 0 0; cmap];colormap(cmap)
ComputerLanguage_Program/MATLAB(OCTAVE)
2018. 9. 3. 23:20