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.
 - order
 - True if R needs to be ordered.
 - delta
 - Optional delta array subtracted from handle before multiplication.
 - scale
 - Optional scale factor multiplied with handle.
 - 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).
 
Outputs
- R
 - Handle to output matrix.
 
Example
handle = imreadcv('img1.jpg', 0);
R = multransposedcv(handle, true);