1

Suppose that I have two transfer functions (or two matrices of transfer functions in the more general case). How do I test if these are the same (equal)?

>> G1 = 1/(s*(s-1));
>> G2 = 1/(s*(s-1));
>> G1 == G2 % won't work..
bergercookie
  • 2,542
  • 1
  • 30
  • 38

1 Answers1

7

To test if two of anything are equal:

isequal(a,b)
siliconwafer
  • 732
  • 4
  • 9