Matlab Annotation Objects and Example

April 25th, 2010 No Comments   Posted in Documents

Users typically create annotation objects from the Plot Edit toolbar or the Insert menu (select Plot Edit in the View menu to display the Plot Edit toolbar). However, you can also create annotation objects using the annotation function. Read More

Controlling the Number of Instances

April 24th, 2010 No Comments   Posted in Documents

Limiting Instances

You can limit the number of instances of a class that can exist at any one time. For example, a singleton class can have only one instance and provides a way to access this instance. You can create a singleton class using these elements: Read More

Working with Matrices in Matlab

August 5th, 2009 No Comments   Posted in Documents

Generating Matrices

MATLAB software provides four functions that generate basic matrices. Read More

Desktop Tools

March 12th, 2008 No Comments   Posted in Documents

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

dir

March 6th, 2008 No Comments   Posted in Functions

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

delete

March 6th, 2008 No Comments   Posted in Functions

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