artin
-Original Message-
From: Keith J. Farmer
Subject: RE: [IronPython] IronPython 0.7.2 Released
Is the calling of overloaded operators implemented?
___
users-ironpython.com mailing list
users-ironpython.com@lists.ironpython.com
Same verified in MS beta:
IronPython 0.7.2 on .NET 2.0.40607.42
Copyright (c) Microsoft Corporation. All rights reserved.
>>> import sys
>>> sys.LoadAssemblyFromFile("Mapack.dll")
>>> from Mapack import *
>>> a = Matrix.Random(3,3)
>>> a
0.805084117131813 0.256781293664491 0.696419091288195
0.9856
Is the calling of overloaded operators implemented?
(Mono 1.1.6 / Win32, Mapack imported)
>>> a = Matrix(3,3)
>>> a[0,0]=2.0
>>> a[0,1]=1.0
>>> a[0,2]=2.0
>>> a[1,0]=1.0
>>> a[1,1]=4.0
>>> a[1,2]=0.0
>>> a[2,0]=2.0
>>> a[2,1]=0.0
>>> a[2,2]=8.0
>>> a
2 1 2
1 4 0
2 0 8
>>> a.Inverse
0.8 -0.2 -0.2
Kinda makes you feel all warm and fuzzy inside...
From: [EMAIL PROTECTED] on behalf of Martin Maly
Sent: Tue 4/12/2005 5:23 PM
We are excited to announce the release of IronPython 0.7.2. The
improvements over the recent 0.7.1 release are:
<>___
We are excited to announce the release of IronPython 0.7.2. The
improvements over the recent 0.7.1 release are:
* Indexing .Net arrays, both single- and multi-dimensional
* Correct exception thrown on division by zero (ZeroDivisionError)
* string constant parsing fixed to handle unrecognized esca
We are excited to announce the release of IronPython 0.7.2. The
improvements over the recent 0.7.1 release are:
* Indexing .Net arrays, both single- and multi-dimensional
* Correct exception thrown on division by zero (ZeroDivisionError)
* string constant parsing fixed to handle unrecognized esca