[READ-ONLY] Mirror of https://github.com/jmrplens/SetFigPaper. Function to modify the style of the graphical representations of MATLAB
exchange fontname graphical-representations grayscale interpreter matlab-plot-gallery
0

Configure Feed

Select the types of activity you want to include in your feed.

Update setfigpaper.m

Fixed: Now the interpreter is applied to the labels of the radial and theta axes

Jose Manuel Requena Plens (Aug 21, 2020, 5:07 PM +0200) beede4f7 d09ccf87

+7 -1
+7 -1
setfigpaper.m
··· 38 38 % SETFIGPAPER('Grayscale',true) 39 39 % ... 40 40 % 41 - % EXAMPLES WITH VALUE VALUES ONLY (same examples as above): 41 + % EXAMPLES WITH VALUES ONLY (same examples as above): 42 42 % 43 43 % SETFIGPAPER 44 44 % SETFIGPAPER(20,10,'Helvetica','Latex') ··· 268 268 for iaxis=1:length(polaxis) 269 269 % Polar Text 270 270 set(polaxis(iaxis).ThetaAxis,'fontname',font,'fontsize',fsize,'color',Black); 271 + if notype == 0 272 + set(polaxis(iaxis).ThetaAxis.Label,'interpreter',type); 273 + end 271 274 % Radial Text 272 275 set(polaxis(iaxis).RAxis,'fontname',font,'fontsize',fsize,'color',Black); 276 + if notype == 0 277 + set(polaxis(iaxis).RAxis.Label,'interpreter',type); 278 + end 273 279 % Title 274 280 set(polaxis(iaxis).Title,'fontname',font,'fontsize',fsize,'color',Black); 275 281 if notype == 0