Tagged: method

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...

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...

clear

Matlab Clear Command clear Clear variables and functions from memory. clear removes all variables from the workspace. clear VARIABLES does the same thing. clear GLOBAL removes all global variables. clear FUNCTIONS removes all compiled...