Image Processing Toolbox User's Guide Previous page   Next Page
immultiply

Multiply two images, or multiply an image by a constant

Syntax

Description

Z = immultiply(X,Y) multiplies each element in array X by the corresponding element in array Y and returns the product in the corresponding element of the output array Z.

If X and Y are real numeric arrays with the same size and class, then Z has the same size and class as X. If X is a numeric array and Y is a scalar double, then Z has the same size and class as X.

If X is logical and Y is numeric, then Z has the same size and class as Y. If X is numeric and Y is logical, then Z has the same size and class as X.

immultiply computes each element of Z individually in double-precision floating point. If X is an integer array, then elements of Z exceeding the range of the integer type are truncated, and fractional values are rounded.

Example

Multiply an image by itself. Note how the example converts the class of the image from uint8 to uint16 before performing the multiplication to avoid truncating the results.

Scale an image by a constant factor:

See also

imabsdiff, imadd, imcomplement, imdivide, imlincomb, imsubtract, ippl


Previous page  immovie imnoise Next page

© 1994-2005 The MathWorks, Inc.