Hmmm, I was too hasty, this doesn't happen under 0.6.3 (which I
thought I had).

On Nov 25, 12:01 pm, William Hunter <[EMAIL PROTECTED]> wrote:
> Hi all;
>
> Please see code below:
>
> from numpy import array, load
> from sympy import Matrix
>
> # This doesn't work:
> a = array(Matrix([1]))
> a.dump('test.k')
> a = load('test.k')  # gives error
>
> # This works:
> a = array([1])
> a.dump('test.k')
> a = load('test.k')
>
> Is this related to the pickle issues?
> --
> wh
>
> PS: My apologies if this e-mail came through twice
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"sympy" group.
To post to this group, send email to sympy@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/sympy?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to