how to export the final result in the form of symbolic expression?
Subject: how to export the final result in the form of symbolic expression?
From: Adam Majewski
Date: Tue, 06 Oct 2009 16:30:31 +0200
jie liu pisze:
> I want to convert the final symbolic expression into .c file or other
> form. I have searched the help file and I have only found the .csv
> file. and it seems that that type can store the numeric data file. How
> can I realize the conversion?
>
>
save data contained in xy variable (result of your computations) to file
( in the form of Lisp expressions) :
save("iim20.lisp",xy);
load it :
load("iim20.lisp");
HTH
Adam