Path: news.mathworks.com!not-for-mail
From: "us " <us@neurol.unizh.ch>
Newsgroups: comp.soft-sys.matlab
Subject: Re: Print Euro symbol
Date: Fri, 17 Aug 2007 20:44:07 +0000 (UTC)
Organization: Universit&#228;tsSpital Z&#252;rich
Lines: 16
Message-ID: <fa51an$6$1@fred.mathworks.com>
References: <fa4vb9$2ep$1@fred.mathworks.com>
Reply-To: "us " <us@neurol.unizh.ch>
NNTP-Posting-Host: webapp-03-blr.mathworks.com
Content-Type: text/plain; charset="ISO-8859-1"
Content-Transfer-Encoding: 8bit
X-Trace: fred.mathworks.com 1187383447 6 172.30.248.38 (17 Aug 2007 20:44:07 GMT)
X-Complaints-To: news@mathworks.com
NNTP-Posting-Date: Fri, 17 Aug 2007 20:44:07 +0000 (UTC)
X-Newsreader: MATLAB Central Newsreader 11
Xref: news.mathworks.com comp.soft-sys.matlab:424363


Thomas:
<SNIP a european...

one of the solutions

     eu=sprintf('%c',8364);
     line(0:1,0:1);
     title(eu,...
          'fontsize',32,...
          'fontname','arial');
     text(.1,.5,eu,...
          'fontsize',64,...
          'fontname','courier new');

us