IRIS Toolbox Reference Manual

dbplot

Plot from database

Syntax

[FF,AA,PDb] = dbplot(D,List,Range,...)
[FF,AA,PDb] = dbplot(D,Range,List,...)

Input arguments

Output arguments

Options

See help on qreport/qplot for other options available.

Description

The function dbplot opens a new figure window (as many as needed to accommodate all graphs given the option 'subplot='), and creates a graph for each entry in the cell array List.

List can contain the names of the database time series, expression referring to the database fields evaluating to time series. You can also add labels (that will be displayed as graph titles) enclosed in double quotes and preceding the expressions. If you start the expression with a ^ (hat) symbol, the function specified in the 'transform=' option will not be applied to that expression.

Example

dbplot(d,qq(2010,1):qq(2015,4), ...
   {'x','"Series Y" y','^"Series z"'}, ...
   'transform=',@(x) 100*(x-1));