How can I repeat my setting for multiple figures (in different figure )?
Mostra commenti meno recenti
I want to apply this changes to all of my figures:
figure('PaperUnits', 'inches','Units', 'inches',...
'PaperPosition', Possave,...
'PaperSize', sizesave,...
'Position', Poscreen,...
'PaperPositionMode', 'auto'); %'PaperType','A4');
axis auto;
set(gca,...
'Units','normalized',...
'FontUnits','points',...
'FontWeight','normal',... 'fontWeight','bold',...
'FontSize',14,...
'FontName','Times',...
'LineWidth',2,...
'box', 'off'); % default is off
set(legend,'FontSize',14,...
'linewidth', 0.3,...
'interpreter','latex',...
'TextColor',[0,0,0]);
and so on
How do I do that without the need of repeating my setting like this:
figure;
p=[plot(t,XEe,'-black'),plot(t,X,'or'),plot(t,XF,'+b'),...
plot(t,YEe,'-black'),plot(t,Y,'or'),plot(t,YF,'+b')];
set(p,'MarkerSize',10,'LineWidth',2);
figure;
p=[plot(t,XEe,'-black'),plot(t,X,'or'),...
plot(t,YEe,'-black'),plot(t,Y,'or'),];
set(p,'MarkerSize',10,'LineWidth',2);
figure;
p=[plot(t,XEe,'-black'),plot(t,XF,'+b'),...
plot(t,YEe,'-black'),plot(t,YF,'+b')];
set(p,'MarkerSize',10,'LineWidth',2);
Risposta accettata
Più risposte (1)
Nimrod
il 3 Gen 2019
2 voti
help linkprop
Categorie
Scopri di più su Creating, Deleting, and Querying Graphics Objects in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!