<< waitforbuttonpress | Graphics functions | white >> |
waterfall(X, Y, Z) |
waterfall(Z) |
waterfall(Z, C) |
waterfall(X, Y, Z, C) |
waterfall(parent, ...) |
waterfall(..., propertyName, propertyValue) |
go = waterfall(...) |
x-coordinates: vector or matrix.
y-coordinates: vector or matrix.
z-coordinates: vector or matrix.
Color array: m-by-n-by-3 array of RGB triplets.
a scalar graphics object value: parent container, specified as a axes.
a scalar string or row vector character.
a value.
a graphics object: surface type.
waterfall creates a waterfall plot, which is a mesh plot with a partial curtain along the y dimension.
This results in a 'waterfall' effect.
The function takes the same input arguments as the mesh function.
f = figure();
Z = peaks();
waterfall(Z);
title ("waterfall function");
f = figure();
[X,Y] = meshgrid(-5:.5:5);
Z = Y.*sin(X) - X.*cos(Y);
p = waterfall(X, Y, Z);
Version | Description |
---|---|
1.0.0 | initial version |
Allan CORNET