[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: DEBUG: FC_WEIGHT didn't match
From: |
Kai Torben Ohlhus |
Subject: |
Re: DEBUG: FC_WEIGHT didn't match |
Date: |
Thu, 13 Feb 2020 12:04:27 +0900 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.4.1 |
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
>
> -------------------------------------------------------
> % 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{:});
> ---------------------------------------------------------------
>
Sorry, I cannot reproduce the message. In your example
"listRowsInTouch" is not defined.
Did you reinstall Octave since updating MS Windows?
Kai