getBranches
Return internal allpass branches
Syntax
Description
returns copies of the internal allpass branches as a two-field structure,
s
= getBranches(caf
)s
. Each branch is an instance of dsp.AllpassFilter
.
Examples
Get Branches of dsp.CoupledAllpassFilter
Get the internal allpass branches of the dsp.CoupledAllpassFilter
System object™.
Minimum Multiplier
Create a dsp.CoupledAllpassFilter
object with filter structure set to 'Minimum multiplier'
. Use the getBranches
function to get the internal allpass filter objects.
caf = dsp.CoupledAllpassFilter
caf = dsp.CoupledAllpassFilter with properties: Structure: 'Minimum multiplier' PureDelayBranch: 0 AllpassCoefficients1: {[0 0.5000]} AllpassCoefficients2: {[]} Gain1: '1' Gain2: '1'
s = getBranches(caf)
s = struct with fields:
Branch1: [1x1 dsp.internal.LegacyAllpassFilter]
Branch2: [1x1 dsp.internal.LegacyAllpassFilter]
s.Branch1
ans = dsp.internal.LegacyAllpassFilter with properties: AllpassCoefficients: {[0 0.5000]} Structure: 'Minimum multiplier' InitialConditions: 0
s.Branch2
ans = dsp.internal.LegacyAllpassFilter with properties: AllpassCoefficients: {[]} Structure: 'Minimum multiplier' InitialConditions: 0
Wave Digital Filter
Change the filter structure to 'Wave Digital Filter'
. The internal allpass filters display WDF coefficients.
caf.Structure = 'Wave Digital Filter'
caf = dsp.CoupledAllpassFilter with properties: Structure: 'Wave Digital Filter' PureDelayBranch: 0 WDFCoefficients1: {[0.5000 0]} WDFCoefficients2: {[]} Gain1: '1' Gain2: '1'
s = getBranches(caf)
s = struct with fields:
Branch1: [1x1 dsp.internal.LegacyAllpassFilter]
Branch2: [1x1 dsp.internal.LegacyAllpassFilter]
s.Branch1
ans = dsp.internal.LegacyAllpassFilter with properties: WDFCoefficients: {[0.5000 0]} Structure: 'Wave Digital Filter' InitialConditions: 0
s.Branch2
ans = dsp.internal.LegacyAllpassFilter with properties: WDFCoefficients: {[]} Structure: 'Wave Digital Filter' InitialConditions: 0
Lattice
When the filter structure is set to 'Lattice'
, the internal allpass filters display the lattice coefficients.
caf.Structure = 'Lattice'
caf = dsp.CoupledAllpassFilter with properties: Structure: 'Lattice' PureDelayBranch: 0 LatticeCoefficients1: {[0 0.5000]} LatticeCoefficients2: {[]} Beta: 1 Gain1: '1' Gain2: '1' ComplexConjugateCoefficients: 0
s = getBranches(caf)
s = struct with fields:
Branch1: [1x1 dsp.internal.LegacyAllpassFilter]
Branch2: [1x1 dsp.internal.LegacyAllpassFilter]
s.Branch1
ans = dsp.internal.LegacyAllpassFilter with properties: LatticeCoefficients: {[0 0.5000]} Structure: 'Lattice' InitialConditions: 0
s.Branch2
ans = dsp.internal.LegacyAllpassFilter with properties: LatticeCoefficients: {[]} Structure: 'Lattice' InitialConditions: 0
Input Arguments
caf
— Input filter object
dsp.CoupledAllpassFilter
dsp.CoupledAllpassFilter
Input filter object, specified as a dsp.CoupledAllpassFilter
System object™.
Output Arguments
s
— Internal allpass branches
structure
Internal allpass branches, returned as a two-field structure. The two fields contain
instances of the dsp.AllpassFilter
System objects representing the two
individual branches of the dsp.CoupledAllpassFilter
object.
Version History
Introduced in R2013b
MATLAB Command
You clicked a link that corresponds to this MATLAB command:
Run the command by entering it in the MATLAB Command Window. Web browsers do not support MATLAB commands.
Select a Web Site
Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .
You can also select a web site from the following list
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
Americas
- América Latina (Español)
- Canada (English)
- United States (English)
Europe
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)
Asia Pacific
- Australia (English)
- India (English)
- New Zealand (English)
- 中国
- 日本Japanese (日本語)
- 한국Korean (한국어)