i want to find roots of a polynomial whose power is 2.59 and 4.06?
조회 수: 2 (최근 30일)
이전 댓글 표시
aa=abs(A^2)*Vr^4+2*abs(A)*(Vr^2)*abs(Z)*(P0*Vr^np*cos(thetaz-deltaA)+Q0*Vr^nq*sin(thetaz-deltaA))-Vs^2*Vr^2+(P0^2*Vr^2*np+Q0^2*Vr^2*nq)*abs(Z^2);
where
np=2.59
nq=4.06
i tried using
syms Vr;
aa=abs(A^2)*Vr^4+2*abs(A)*(Vr^2)*abs(Z)*(P0*Vr^np*cos(thetaz-deltaA)+Q0*Vr^nq*sin(thetaz-deltaA))-Vs^2*Vr^2+(P0^2*Vr^2*np+Q0^2*Vr^2*nq)*abs(Z^2);
ans1=vpasolve(aa,Vr);
please suggest with example
댓글 수: 1
Walter Roberson
2021년 3월 7일
By definition, polynomials only have non-negative integer powers of the variable they are polynomial in.
답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Polynomials에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!