How can I get the pre-2014b behavior of hold on?

2 visualizaciones (últimos 30 días)
Iram Weinstein
Iram Weinstein el 7 de Dic. de 2014
Comentada: David el 6 de Ag. de 2015
I often make 2-d plots showing a comparison of cases with a parameter 'On" of 'Off'. So I'll have several curves for the first case and then another set, using dashed lines, for the second case.
%The code would be pre 2014b
plot(x,y_on)
hold on
plot(x,y_off,'--')
How can I get the same result in 2014b?

Respuesta aceptada

Jesse
Jesse el 8 de Dic. de 2014
Editada: Jesse el 8 de Dic. de 2014
I use
set(gca, 'ColorOrderIndex', 1)
between calls to reset the color order, and give you the same behavior as pre-2014b
  2 comentarios
Julius Kusuma
Julius Kusuma el 4 de Mzo. de 2015
The caveat is that this has to be called BEFORE "hold on". A bit annoying, MathWorks should change this.
Mike Garrity
Mike Garrity el 1 de Jul. de 2015
I'm not clear on what you're referring to. I get exactly the same result if I do this:
rng(0)
figure
plot(randn(1,100))
set(gca,'ColorOrderIndex',1)
hold on
plot(randn(1,100))
or this:
rng(0)
figure
plot(randn(1,100))
hold on
set(gca,'ColorOrderIndex',1)
plot(randn(1,100))

Iniciar sesión para comentar.

Más respuestas (2)

the cyclist
the cyclist el 7 de Dic. de 2014
Did the behavior of
hold on
change in 2014b? I didn't think so. I continue to use it normally.
What specific problem are you seeing? Can you plot a small, fully executable piece of code that results in something unexpected?
  3 comentarios
Mike Garrity
Mike Garrity el 1 de Jul. de 2015
The pre-14b behavior of "hold all" finally got promoted to "hold on".

Iniciar sesión para comentar.


M J Schwartz
M J Schwartz el 1 de Jul. de 2015
You can edit hold.m (it is just an ascii mfile)
Add, 'ColorOrderIndex',1 in two places
...
elseif(strcmp(opt_hold_state, 'on'))
set(fig,'NextPlot','add');
set(ax,'NextPlot','add', 'ColorOrderIndex',1);
...
elseif(strcmp(opt_hold_state, 'on'))
set(fig,'NextPlot','add');
set(ax,'NextPlot','add', 'ColorOrderIndex',1);
save hold.m to a directory that is before all of matlab's stuff in your path. save as: ~/matlab/mymfiles/hold.m add to your startup.m path('~/matlab/mymfiles'], path)
Arrogant "improvement" of default behavior (in this case, matlab removed the default behavior of hold.m from even being an option!?) is a real PIA for someone with 20+ years of code. Don't get me started on perula, which lets us all see what it is like to be colorblind.
  2 comentarios
Steven Lord
Steven Lord el 1 de Jul. de 2015
With respect to the parula colormap, Steve Eddins did a four part blog series discussing why we made the colormap change. The feedback in the comments was generally positive. But there were some people who indicated they preferred or needed the jet colormap (the previous default) to which I responded:
"Note that the JET colormap is still included in MATLAB. You can change your figure or axes colormap to use JET using the COLORMAP function; you can even set it as the default figure or axes Colormap if you like.
You can put the command to change the default colormap in your startup.m file in your startup directory if you want to always use jet.
David
David el 6 de Ag. de 2015
M J,
Agreed, the change in hold is rather foolish. Why not just leave well enough alone?

Iniciar sesión para comentar.

Categorías

Más información sobre Red en Help Center y File Exchange.

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by