主要内容

visualizeAlgebraicTopologyTree

R2026b

Visualize tree node of algebraic topology

Since R2026b

Description

figure = visualizeAlgebraicTopologyTree(eisfom) plots the algebraic topology tree of the EISModel object, eisfom.

example

Examples

collapse all

Create a fractional-order equivalent circuit as a resistor in series with a parallel resistor-capacitor network.

eisfom = eisModel("R0+(R1,C1)") 
eisfom =  
EISModel with properties: 
 
CircuitTopology: "R0+(R1,C1)" 
NumParameters: 3 
ParameterList: ["R0" "R1" "C1"] 
ParameterValues: [0.0250 0.0035 150] 
CircuitImpedance: "(R0 + ((R1 * (1/(i*w*C1))) / (R1 + (1/(i*w*C1)))))" 
ParameterList: ["R0" "R1" "C1"] 

Visualize the circuit topology as an algebraic tree.

Handle = visualizeAlgebraicTopologyTree(eisfom);

Algebraic tree of circuit topology of the eisfom object

Input Arguments

collapse all

Fractional-order equivalent circuit model used to plot the algebraic topology tree, specified as an EISModel object.

Output Arguments

collapse all

Figure representing the algebraic topology tree of the eisfom input argument.

Version History

Introduced in R2026b