isallpass Determines whether the filter is allpass or not Calling Sequence flag = isallpass(b,a) flag = isallpass(sos) flag = isallpass(...,tol) Parameters b: vector containing zero coefficients of the transfer function a: vector containing pole coefficients of the transfer functtion sos: Second order estimates. real|complex - matrix (K-by-6) tol: tolerance is used to determine when two numbers are close enough to be considered equal. scalar Description flag = isallpass(b,a) returns a logical output that is either 1 or 0 depending on output parameter "flag" by the filter specified by numerator coefficients, b, and denominator coefficients, a, is an allpass filter or not. If the filter is not an allpass filter, flag is equal to false.flag = isallpass(sos) returns true if the filter specified by second order sections matrix ie sos, is an allpass filter. sos is a K-by-6 matrix, where the number of sections, K, must be greater than or equal to 2. Each row of sos corresponds to the coefficients of a second order (biquad) filter. The ith row of the sos matrix corresponds to [bi(1) bi(2) bi(3) ai(1) ai(2) ai(3)]. Example 1 Example 2 Example 3 Authors Parthasarathi Panda