multransposedcv

Computes the product and transposition of a matrix.

Syntax

R = multransposedcv(handle, order...)

R = multransposedcv(handle, order, delta, scale, type)

Inputs

handle
Handle of a single channel image generated by the Computer Vision library.
Type: integer
order
True if R needs to be ordered.
Type: logical
delta
Optional delta array subtracted from handle before multiplication.
Type: matrix
scale
Optional scale factor multiplied with handle.
Type: scalar
type
Optional type of output matrix specified in R. Valid Valid values are -1 (default) which indicates same depth as handle, 5 (CV_32F) or 6 (CV_64F).
Type: integer

Outputs

R
Handle to output matrix.
Type: integer

Example

Compute the product and transposition of a matrix:
handle = imreadcv('img1.jpg', 0);
R = multransposedcv(handle, true);