Main Content
isfilterseparable
Determine whether filter coefficients are separable
Description
returns logical isSeparable
= isfilterseparable(H
)1
(true) when the filter kernel
H
is separable, and 0
(false)
otherwise.
[
also returns the vertical coefficients isSeparable
,hcol
,hrow
]
= isfilterseparable(H
)hcol
and horizontal
coefficients hrow
when the filter kernel,
H
, is separable. Otherwise, hcol
and
hrow
are empty.
Examples
Input Arguments
Output Arguments
More About
Algorithms
The isfilterseparable
function uses the singular value
decomposition svd
function to determine the rank of the
matrix.
Version History
Introduced in R2006a