Go to the first, previous, next, last section, table of contents.


bsave, bload

bsave(obj,"filename")
:: This function writes obj onto filename in binary form.
bload("filename")
:: This function reads an expression from filename in binary form.
return
bsave() : 1, bload() : the expression read
obj
arbitrary expression which does not contain neither function forms nor unknown coefficients.
filename
filename
[0] A=(x+y+z+u+v+w)^20$
[1] bsave(A,"afo");
1
[2] B = bload("afo")$
[3] A == B;
1
[4] X=(x+y)^2; 
x^2+2*y*x+y^2
[5] bsave(X,"afo")$
[6] quit;
% asir
[0] ord([y,x])$    
[1] bload("afo");
y^2+2*x*y+x^2
References
section output.


Go to the first, previous, next, last section, table of contents.