Export a figure to a deployed application
exportFigure = webfigure(h)
exports
the figure identified by the handle h to a deployed application for
use as a WebFigure. How the deployed application manages the exported
figure is specific to the target language. The WebFigure feature is
support by Java® and .NET.exportFigure
= webfigure(h
)
function returnFigure = getWebFigure() h = figure; set(h, 'Visible', 'off'); surf(peaks); set(h, 'Color', [.8,.9,1]); returnFigure = webfigure(h); close(h);