Tagged: matlab functions

matlab

format

Matlab Format Function format Set output format. All computations in MATLAB are done in double precision. format may be used to switch between different output display formats as follows: format Default. Same as SHORT....

matlab

edit

Matlab Edit Command edit Edit M-file. edit FUN opens the file FUN.M in a text editor.  FUN must be the name of an m-file or a MATLABPATH relative partial pathname (see PARTIALPATH). edit FILE.EXT...

echo

Matlab Echo Command echo Echo commands in M-files. echo ON turns on echoing of commands inside Script-files. echo OFF turns off echoing. echo file ON where ‘file’ is a function name causes the named...

dir

dir List directory. dir directory_name lists the files in a directory. Pathnames and wildcards may be used.  For example, dir *.m lists all the M-files in the current directory. D = dir(‘directory_name’) returns the...

diary

DIARY Save text of MATLAB session. DIARY filename causes a copy of all subsequent command window input and most of the resulting command window output to be appended to the named file. If no...

matlab

demo

Matlab Demo Command demo Run demonstrations. Type “demo” at the command line to browse available demos. With the optional action argument demo (‘matlab’|’toolbox’|’simulink’|’blockset’|’stateflow’), demo opens the demo screen to the specified subtopic. With the...

delete

delete Delete file or graphics object. delete file_name deletes the named file from disk. Wildcards may be used. For example, delete *.p deletes all P-files from the current directory. Use the functional form of...