Thanks!
R
On Jan 8, 2:57 pm, John Cremona wrote:
> Look at the documentation for load (by typing load?)
>
> The correct syntax is
>
> load ('foomat')
>
> It returns the saved object. Hence:
>
> sage: foomat2 = load('foomat')
> sage: foomat == foomat2
> True
>
> John Cremona
>
> On Jan 8, 4:41 p
Look at the documentation for load (by typing load?)
The correct syntax is
load ('foomat')
It returns the saved object. Hence:
sage: foomat2 = load('foomat')
sage: foomat == foomat2
True
John Cremona
On Jan 8, 4:41 pm, ricardomayerb wrote:
> Hello everyone,
>
> My desired result and probabl