How can get roots of polynomial having variables in denominator.?
    6 ビュー (過去 30 日間)
  
       古いコメントを表示
    
    Vinothkumar Sethurasu
 2021 年 2 月 12 日
  
    
    
    
    
    コメント済み: Vinothkumar Sethurasu
 2021 年 2 月 12 日
            Let 
F(x)= (x^2+1)/(x+1)+(2*x^2+3)/(x+2)=0,
With syms x,
How can we find the roots of  F(x).?
0 件のコメント
採用された回答
  KSSV
      
      
 2021 年 2 月 12 日
        Read about vpasolve. 
syms x 
F = (x^2+1)/(x+1)+(2*x^2+3)/(x+2)==0 ;
r = vpasolve(F)
その他の回答 (0 件)
参考
カテゴリ
				Help Center および File Exchange で Symbolic Math Toolbox についてさらに検索
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

