I have just updated to the latest windows version:
> ver
Microsoft Windows [Version 10.0.18363.592]
and now I get a message I've never seen before: "DEBUG: FC_WEIGHT didn't match" on the print statement in the code below. This applies under Octave versions 4.4.1 and 5.2.0.
A quick internet search suggests it's a ghostscript problem, but I've tried removing myfont and the set statement and neither makes any difference. Apparently it's a fontconfig problem but nowhere am I explicitly using fontconfig.
Any ideas how to get rid of the debug message?
Cheers... Ian
-------------------------------------------------------
% 23a. Set graphing defaults used by all subsequent plots
myfont={'fontsize',25,'fontweight','bold'};
mygraphs={'-dpng','-S800,800'};
mywidegraphs={'-dpng','-S1800,800'};
set(0, 'defaulttextfontsize', 15)
% 23b. Create png file of SD By Row
thisfig = figure(1, 'visible','off');
xrange = 1:length(listRowsInTouch);
ssd=sd1PieceByRn(listRowsInTouch);
plot(xrange, [ssd; mean(ssd)*ones(1,db.nRowsInTouch); msThreshold*ones(1,db.nRowsInTouch)], 'Linewidth',2);
thislegend=legend('Actual','Average over touch','Threshold');
setlegend(thislegend,16);
axis([0, xrange(end)+2, min(ssd)-5, 5+max(10,max(ssd))]);
setaxes(thisfig,28,[0:16:db.nRowsInTouch]);
xlabel('Row number', myfont{:});
ylabel('Milliseconds', myfont{:});
title('Standard Deviation (Touch only)', myfont{:});
grid ('on');
print (1, fsOutStdByRow, mywidegraphs{:});
---------------------------------------------------------------