Is it possible to set gca for all subplots?

12 visualizaciones (últimos 30 días)
Mr M.
Mr M. el 23 de Abr. de 2015
Respondida: VBBV el 25 de Jul. de 2023
For example I would like to set(gca,'YTick',[]); but for all subplots

Respuestas (1)

VBBV
VBBV el 25 de Jul. de 2023
yes, its possible to set the YTick to [ ] for all subplots you want by using axes handles for individual subplots as shown below
subplot(311)
plot(1:10);grid
ax1 = gca;
subplot(312)
plot(rand(1,4)); grid
ax2 = gca;
subplot(313)
plot(rand(1,4));grid
ax3 = gca;
% single call for all axes handles
set([ax1 ax2 ax3],'YTick',[])

Categorías

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

Community Treasure Hunt

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

Start Hunting!

Translated by