Issue with storing the work done.
Title
Question
I have done Vector Operations. I tried storing the work using diary() but still can't see if data is stored or not. I already have made a folder on desktop with name-rollno-scilab but still i am not able to store my work. Please Guide.
Scilab Vector-Operations 00-01 min 0-10 sec
Answers:
Go to the directory you want to save your work in.
Type diary("scilab_workshop.txt")
The commands typed after it will be saved.
It is saved in current working directory. Location of it is also showing in left file browser window in scilab. You can use pwd command to print working directory and go there to check your file as suppose you used diary("scilab_workshop.txt") then by same name it will be there. At the end of program always close diary by diary(0) command.
Login to add comment