Posts Tagged ‘m-files’
Desktop Tools
This section provides an introduction to MATLAB’s desktop tools. You can also use MATLAB functions to perform most of the features found in the desktop tools. The tools are: Read More
Tags: addpath, array, break, cd, clear, Command History, Command Window, Debugger, delete, demo, diary, dir, Directory Browser, edit, Editor, end, for, format, full, Functions, Graphical user interface, help, help browser, if, inf, info, Launch Pad, load, m-files, magik, matlab, matlab functions, MATLAB related, matlab users, mean, more, open, path, quit, rem, return, rmpath, save, session, sign, stem, title, variables, which, while, workspace
echo
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 Function-file to be echoed when it is used.
echo file OFF turns it off.
echo file toggles it.
echo ON ALL turns on the echoing of commands inside any
Function-files that are currently in memory (i.e., the
functions returned by INMEM).
echo OFF ALL turns them all off. Read More
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. Read More