How to get the positive root of the cubic a*x^3+3*b*x^2+3*c*x+d=0

조회 수: 2 (최근 30일)
Atom
Atom 2013년 4월 17일
답변: rania saidi 2021년 3월 14일
How to get the positive root of the cubic a*x^3+3*b*x^2+3*c*x+d=0 where a=1,c=b+2, d=-3 and b=.1:.1:2.
If rr is the root, find rr/(rr+1) for each b.

채택된 답변

Kye Taylor
Kye Taylor 2013년 4월 17일
편집: Kye Taylor 2013년 4월 17일
You can try
b = .1:.1:2;
a = 1;
c = b+2;
d = -3;
posR = zeros(1,length(b));
for i = 1:length(b)
r = roots([a,3*b(i),3*c(i),d]);
posR(i) = r(r>0); % only one real root for the values you specified
posR(i) = posR(i)/(posR(i)+1);
end

추가 답변 (2개)

rania saidi
rania saidi 2021년 3월 14일
Résolution équation ax3+bx2+cx+d=0 MATLAB

rania saidi
rania saidi 2021년 3월 14일
Résolution équation a*x^3+b*x^2+c*x+d=0 a=6 ; b=1 ; c=-4; d=1 dans matlab

카테고리

Help CenterFile Exchange에서 Interpolation에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by