일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- MATLAB
- 텐서플로
- 한빛미디어
- 월간결산
- 블로그
- 티스토리
- Blog
- matplotlib
- Python
- Google Analytics
- 통계학
- python visualization
- SQL
- Visualization
- 리눅스
- 딥러닝
- MySQL
- Pandas
- 독후감
- 시각화
- 파이썬 시각화
- 매틀랩
- Tistory
- 서평
- Linux
- 한빛미디어서평단
- Ga
- 서평단
- 파이썬
- tensorflow
- Today
- Total
목록ComputerLanguage_Program/MATLAB(OCTAVE) (33)
pbj0812의 코딩 일기
plot(x,y,'o','MarkerFaceColor','b')
1. colorbar 임의 수정2. mycmap=get(gcf,'colormap')3. save('MyColormaps','mycmap')4. set(figure,'colormaps',mycmap)
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)
ex) pcolor(xx,watt,sals)v=[5 10 15 20 25 30]hold oncontour(xx,watt,sals,v,'Showtext','on','Linestyle','--','LineColor','w','LineWidth',4)
cmap=jet;cmap=[0 0 0; cmap];colormap(cmap)
http://stackoverflow.com/questions/3434247/how-do-i-overlap-image-with-a-graph-in-matlabHow do I overlap image with a graph in MATLAB?I want to write a software that reads the satellite data from a text file and plots graph for different parameters of the oceans. The i...stackoverflow.com load madrill % 원숭이 자료 부르기image(1:480,1:500,X) % 그리기, x는 대문자!colormap(map) % 그림 제대로 그리기 hold on plot([1 480],..
length(dir('*.*')) 결과값에는 파일 갯수보다 +2 만큼의 값이 추가된다. 아마 숨겨진 파일이라던지 시스템 파일이 속해진것으로 보인다....
scrsz=get(0,'screensize');fig1=figure('Position',[ 1 1 scrsz(3) scrsz(4)/2]);
figure(1)set(gca,'color','k')hold ona=[1 2 3];b=[1 2 3 ];plot(a,b,'r','linewidth',10) 여러 테스트를 거치니set 명령어는 맨 마지막에 하는게 좋아보임.axis 명령어 등을 통하여 피규어의 크기를 바꿀 때 초기화 됨. print 명령어를 썼을때 배경이 저장되지 않는 단점이 있음...우짜지...