cascade

cascade is a third party function used in FSDA demos and examples

Syntax

Description

function cascade cascades existing figures so that they don't directly overlap cascade takes and returns no arguments. This function will cascade as many figures as will fit the height/width of the screen. If there are more figures than can cascade in a screen, those additional figures are left in their original position.

example

cascade() Cascade multiple figures.

Examples

expand all

  • Cascade multiple figures.
  • close all;
    load('multiple_regression.txt');
    y=multiple_regression(:,4);
    X=multiple_regression(:,1:3);
    yXplot(y,X);
    [out]=LXS(y,X,'nsamp',10000);
    [out]=FSReda(y,X,out.bs);
    out1=out;
    out1.RES=out.RES.^2;
    resfwdplot(out1);
    levfwdplot(out1);
    resindexplot(out1.RES);
    plot(out.S2(:,1),out.S2(:,2)); title('Plot of R^2');
    cascade;

    Input Arguments

    Output Arguments

    References

    Tufte E.R. (1983), "The visual display of quantitative information", Graphics Press, Cheshire.

    See Also

    This page has been automatically generated by our routine publishFS