[Scilab-users] ?==?utf-8?q? save the variables except the functions

Antoine Monmayrant amonmayr at laas.fr
Mon Oct 28 09:36:35 CET 2019


Hello,

I think you can selectively retrieve only the variables, not the functions by combining:
- [names, typs, dims, vols] = listvarinfile(filename) that will list all the scilab objects saved in your file, with their type.
- a loop over the typs array to discriminate between the objects of type 1 (variables), and that of  type 13 (functions) .
- load(filename, x1,...,xn) that let you retrieve just a selection of all the objects in a given file.
 
Hope it helps,

Antoine
 
Le Lundi, Octobre 28, 2019 03:44 CET, fujimoto2005 <fujimoto2005 at gmail.com> a écrit: 
 
> Is there any command like "save(filename)" to saves all variables except for
> function names and their definition?
> When debugging, I want to use saved calculated variables after the
> modification of some functions.
> After I modify some functions and load all variables, the modified
> definitions of the functions are updated by the old definitions of the
> functions.
> I want to save the variables except for the definition of the function in
> order to avoid such a situation. 
> 
> Thanks.
> 
> 
> 
> --
> Sent from: http://mailinglists.scilab.org/Scilab-users-Mailing-Lists-Archives-f2602246.html
> _______________________________________________
> users mailing list
> users at lists.scilab.org
> http://lists.scilab.org/mailman/listinfo/users
>




More information about the users mailing list