a command for having the ygrid on only , on figure , with set(gca , ),, ... .. ...How ?

11 visualizaciones (últimos 30 días)
, So I dont have to take out the xgrid manualy for big number of figures
Thanks

Respuesta aceptada

Walter Roberson
Walter Roberson el 22 de Dic. de 2012
set(gca, 'YGrid', 'on', 'XGrid', 'off')
  5 comentarios
Image Analyst
Image Analyst el 22 de Dic. de 2012
Editada: Image Analyst el 22 de Dic. de 2012
Try this. It works perfectly fine:
y=rand(1,20);
plot(y);
set(gca, 'YGrid', 'on', 'XGrid', 'off')
Your mistake was that you did this:
gca=figure('Units','inches','Position', [7.5 5.5 6 4]); %[left, bottom, width, height]:
This overwrote the built-in gca with a figure handle. DON'T DO THAT! So now gca is a figure handle of the figure you just created instead of being (automatically) the handle of the axes that gets created on the figure. Using a figure handle instead of an axes handle like Walter instructed you to will give you an error almost exactly what you shared.
Ibrahim Greiby
Ibrahim Greiby el 22 de Dic. de 2012
Editada: Ibrahim Greiby el 22 de Dic. de 2012
Sorry I had to go away Now I got it thank you Walter and image anlayst
this is example
set(figure,'Units','inches','Position',[7 0.5 7 5],'DefaultAxesFontName','Arial', ... 'DefaultAxesFontSize',12,'DefaultAxesFontWeight','Normal');
y=rand(1,10);
% plot(y,'Color','r','Marker', 'o'); plot(y,'-.ms','lineWidth',1.5,'MarkerEdgeColor','m','MarkerFaceColor','g','MarkerSize',10); set(gca, 'YGrid', 'on', 'XGrid','off');
text(1,.7,['\fontsize{16}Thanks {\color{magenta}for '... '\color[rgb]{0 .5 .5}your \color{red}concern} and answer It help allot']) legend(gca,'Thank you \circALLOOOT','location','northeast'); box on ylabel('y','FontSize',12,'fontweight','Normal'); xlabel('x','FontSize',12,'fontweight','Normal');

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

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

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by