| 
     
      
      
      From: Jochen V. <vo...@se...> - 2004-12-01 14:45:15
      
     
   | 
Hello Nicolas
On Wed, Dec 01, 2004 at 09:34:51AM -0500, Humufr wrote:
> Another strange thing I remark is:
>=20
> if you are doing:
>=20
> plot([1,2],[4,5])
> legend(('toto'))
>=20
> the text for the legend is vertical and not horizontal, that's work=20
> normally when we are using more than one argument.
This happens because ('toto') is not a one-element list
but a string.  If you write
  plot([1,2],[4,5])
  legend(('toto',))
instead it works as expected.
I hope this helps,
Jochen
--=20
http://seehuhn.de/
 |