Skip to content

band (Series)

Draw time series with uncerainty bands

Syntax

[plotHandle, info] = band([mid, lower, upper], ___)
[plotHandle, info] = band(mid, lower, upper, ___)

Input arguments

mid [ Series ]

Time series with the mid point for the band.

lower [ Series ]

Time series with the lower band or lower bands.

upper [ Series ]

Time series with the upper band or upper bands.

Output arguments

plotHandle [ handle ]

Graphics handle to the mid-point line.

info [ struct ]

Output information struct with the following fieds:

  • .BandHandles - graphics handles to the bands (patch objects)

  • .Dates - dates actually plotted

  • .MidData - mid-point data actually plotted;

  • .LowerData - lower bound data actually plotted;

  • .UppderData - upper bound data actually plotted;

Description

Examples