필터 지우기
필터 지우기

How to make plot in Matlab 2014 looked the same as Matlab 2013 default?

조회 수: 5 (최근 30일)
Peng
Peng 2014년 11월 27일
편집: Peng 2014년 11월 27일
Just upgrade to Matlab 2014 and looks like the default plot looks very different from Matlab 2013 default. Is there away to easily make plot in Matlab 2014 looked like the default plot in Matlab 2013?
In the middle of a project and need some 2014 feature. Don't want to have plots in two styles in the same document but it is too painful to go back and change every picture to 2014 style... Need help!
  댓글 수: 1
mashtine
mashtine 2014년 11월 27일
What do you need changed? Need a bit more specificity. Background colour? axis labels? etc

댓글을 달려면 로그인하십시오.

답변 (2개)

Robert Cumming
Robert Cumming 2014년 11월 27일
Is it the default colormap which is the problem? The default changed.
You should be able to get back to the R2013 map using:
colormap ( 'jet' )

Peng
Peng 2014년 11월 27일
편집: Peng 2014년 11월 27일
Thanks, colormap was one of the difference, but there is something more fundamental:
If just run the same code in 2013 and 2014:
if true
x = linspace(0,10);
y1 = sin(x);
y2 = sin(5*x);
figure
subplot(2,1,1);
plot(x,y1);
grid on;
subplot(2,1,2);
plot(x,y2);
grid on;
end
in 2013 we get:
in 2014 we get:
Is there a "2013 style" I can set everything back to?

카테고리

Help CenterFile Exchange에서 Colormaps에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by