nKandel
nKandel

Reputation: 2575

How to Plot Signal Flow Graph

I'm currently doing some problem related to digital signal analysis and processing on matlab. I have given a transfer function of 4th order discrete time as shown below. enter image description here

I have find out the pole & zeros and then convert it to second order section model as

>> b = [0.0018 0.0073 0.011 0.007 0.008];
>> a = [1 -3.0544 3.8291 -2.2925 0.55072];
>> [z,p,k]=tf2zp(b,a);
>> [sos,temp]=zp2sos(z,p,k);

Now I have to draw signal flow graph of value store on sos to represent cascaded structure. My Question is :- Is there any function available or not to draw signal flow graph in matlab?

Upvotes: 3

Views: 6110

Answers (1)

Related Questions