On 2/13/20 9:31 PM, Ian McCallion wrote:
> On Thu, 13 Feb 2020 at 11:13, Ian McCallion <address@hidden
> <mailto:address@hidden>> wrote:
>
> On Thu, 13 Feb 2020 at 03:04, Kai Torben Ohlhus <address@hidden
> <mailto:address@hidden>> wrote:
>
> On 2/13/20 1:49 AM, Ian McCallion wrote:
> > 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
> >
> <snip>
>
> I've now uninstalled and reinstalled:
> GNU Octave Version: 5.2.0 (hg id: eb46a9f47164)
> GNU Octave License: GNU General Public License
> Operating System: MINGW32_NT-6.2 Windows 6.2 x86_64
> and I still get the "DEBUG: FC_WEIGHT didn't match" message.
>
> Code is below.
>
> Cheers... Ian
> --------------------------------
> close
> listRowsInTouch=5:14;
> db.nRowsInTouch=10;
> fsOutStdByRow='temp.png';
> sd1PieceByRn=rand(1,20);
> msThreshold = .5;
> graphics_toolkit('gnuplot');
> tic
> % 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','on');
> 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{:});
> toc
> -------------------------------------------------
Confirmed. An important observation is, that you are plotting with
"gnuplot". For "fltk" and "qt" I do not see this DEBUG message. Is
there a particular reason, why you want to use "gnuplot"?
I think there was a reason, back when I first developed the code about 8 years ago, but I can confirm that qt works for me now. Many thanks for your help.
Cheers... Ian