how to display final partial fraction
4 次查看(过去 30 天)
显示 更早的评论
I have to find partial fraction of given signal $X=[s^3-2s^2-5s+6 ] / [s^2-s+2] $
With use of residue command, i get values of r and p and k but how can i modify my code so as to display in MATLAB my answer as a natural/real partial fraction looks like on books and copies(as shown in red boundry/circle in attached photo) instead of just showing r and p and k vectors
for this i am working with following MATLAB code:
clc
clear all
close all
nx=[1 -2 -5 6]
dx=[1 -1 2]
[R,P,K]=residue(nx,dx)
2 个评论
回答(1 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!