pbj0812의 코딩 일기

[MATLAB] colorbar 크기 설정 본문

ComputerLanguage_Program/MATLAB(OCTAVE)

[MATLAB] colorbar 크기 설정

pbj0812 2018. 9. 3. 23:22

fig1=figure;

left=100;

bottom=100;

width=20;

height=500;

pos=[left bottom width height];

axis off

colorbar([0.1 0.1 0.7 0.8])

set(fig1,'outerPosition',pos)

Comments