libpointer_reshape

Reshapes libpointer dimensions.

Syntax

  • tf = h.reshape(X, Y)

Input argument

  • h - a libpointer handle.

  • X - a scalar double: new X dimension.

  • Y - a scalar double: new Y dimension.

Description

Set dimensions from libpointer object.

See also

libpointer.

Example

a = libpointer('doublePtr', eye(2, 2));
a.reshape(3, 3);
a.Value

History

VersionDescription

1.0.0

initial version

Author

Allan CORNET

Last updated