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

Linking Graphs to Variables & Data Source Properties

April 25th, 2010 No Comments   Posted in Documents

Plot objects let you link a MATLAB expression with properties that contain data. For example, the lineseries object has data source properties associated with the XData, YData, and ZData properties. These properties are called XDataSource, YDataSource, and ZDataSource. Read More

Matlab Plot Objects

April 25th, 2010 No Comments   Posted in Documents

A number of high-level plotting functions create plot objects. The properties of plot objects provide easy access to the important properties of the core graphics objects that the plot objects contain. Read More

Matlab Editing Plots

April 24th, 2010 No Comments   Posted in Documents

Why Edit Plots?

MATLAB graphs are formatted to provide readability, setting the scale of axes, including tick marks on the axes, and using color and line style to distinguish the plots in the graph. However, if you are creating presentation graphics, you might want to change this default formatting or add descriptive labels, titles, legends, and other annotations to help explain your data. 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