Error trying to evaluate the following partial fraction as practice on matlab [5(s+2)] / [s(s^2+8s+15)]
6 ビュー (過去 30 日間)
古いコメントを表示
numf=5*[1+2];
>> denf=s*[1+8+15];
>> [r,p,k]=residue(numf,denf)
Undefined function 'filter' for input arguments of type 'sym'.
Error in deconv (line 32) [q,zf] = filter(b, a, [1 zeros(1,nb-na)]);
Error in residue (line 88) if length(u) >= length(v), [k,u] = deconv(u,v); end
0 件のコメント
採用された回答
Dishant Arora
2014 年 2 月 22 日
編集済み: Dishant Arora
2014 年 2 月 22 日
eliminate symbols
num = [1,2];
den = [1,8,15];
[r,p,k] = residue(num,den); % go through documentation of residue
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Numbers and Precision についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!