Reputation: 2575
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.
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
Reputation: 814
I found a couple of tools on Matlab's FileExchange:
I don't think there is an original Matlab tool.
Upvotes: 1