Добавил:
Upload Опубликованный материал нарушает ваши авторские права? Сообщите нам.
Вуз: Предмет: Файл:

Библиотеки Matlab / datamanager

.doc
Скачиваний:
17
Добавлен:
09.02.2015
Размер:
29.7 Кб
Скачать

matlab\datamanager - (No table of contents file)

<brush> - Interactively highlight, delete, and modify observations in graphs

BRUSH Interactively highlight, delete, and modify observations in graphs.

BRUSH ON turns on brushing.

BRUSH OFF turns it off.

BRUSH by itself toggles the state.

BRUSH COLOR sets the current color used for brushing graphics to the

specified ColorSpec. Note that this does not affect the brush state.

BRUSH(FIG,OPTION) applies the brush command to the figure specified by

FIG. OPTION can be any of the above arguments.

H = BRUSH(FIG) returns the figure's brush mode object for customization.

The following properties can be modified using set/get:

Enable 'on'|{'off'}

Specifies whether this figure mode is currently

enabled on the figure.

FigureHandle <handle>

The associated figure handle. This property supports GET only.

Color <MATLAB array>

Specifies the current color used for brushing

EXAMPLE 1:

plot(1:10);

brush on

% brush graphics in the plot

EXAMPLE 2:

plot(1:10);

h = brush;

set(h,'Color',[1 0 0],'Enable','on');

% brush graphics on the plot in red.

See also zoom, pan, rotate3d, linkaxes.

Reference page in Help browser

doc brush

<linkdata> - LINKED Automatically update graphs when variables change

LINKED Automatically update graphs when variables change.

LINKDATA ON turns on linking for the current figure.

LINKDATA OFF turns it off.

LINKDATA by itself toggles the state.

LINKDATA(FIG,...) works on specified figure handle.

H = LINKDATA(FIG) returns a linkdata object with the following property:

Enable 'on'|{'off'}

Specifies whether this figure is currently linked.

EXAMPLE:

x = randn(10,1);

plot(x);

linkdata on

See also brush.

Reference page in Help browser

doc linkdata

<linkplotfunc> - Copyright 2008-2010 The MathWorks, Inc.

Copyright 2008-2010 The MathWorks, Inc.

Соседние файлы в папке Библиотеки Matlab