Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
假设我有两个传递函数(或者在更一般的情况下是两个传递函数矩阵)。我如何测试这些是否相同(相等)?
>> G1 = 1/(s*(s-1)); >> G2 = 1/(s*(s-1)); >> G1 == G2 % won't work..
测试两个是否相等:
isequal(a,b)