Stream manager | dlmwrite >> |
diary() |
diary(filename) |
diary('off') |
diary('on') |
onoff = diary('get', 'Diary') |
filename = diary('get', 'DiaryFile') |
diary('set', 'DiaryFile', filename) |
diary('set', 'Diary', onoff) |
a string: 'on' or 'off'.
a string: filename of the current diary.
a string: 'on' or 'off'.
a string: filename to use for the diary.
diary creates a log of keyboard input and the resulting text output.
diary toggles diary mode on and off.
diary('off') stops recording the session in the diary file.
diary('on') starts recording a session in a file called 'diary' in the current working directory.
diary('set', 'Diary', onoff) allows to start or stop the diary.
onoff = diary('get', 'Diary') returns the state 'on' or 'off' of the diary.
diary(filename) records the session in the file named filename.
filename = diary('get', 'DiaryFile') returns filename used as diary.
diary('set', 'DiaryFile', filename)) set the filename for the diary.
filename = diary('get', 'DiaryFile')
onoff = diary('get', 'Diary')
Version | Description |
---|---|
1.0.0 | initial version |
Allan CORNET