help plot the inequality
이전 댓글 표시
Is there a way i can create a inequality for this function
syms a b
%b=k2 a =k1
X = ((11+b)*(121+a)-(a+a*b+110*b+210))/(11+b);
simplify(X)
Z = ((X*(a+a*b+110*b+210)-(11*a+100)*(11+b))/X)
simplifyFraction(Z);
simplify(Z)
답변 (1개)
Star Strider
2019년 2월 15일
Straightforward:
syms a b X Z
assume(X > 0)
assume(Z > 0)
It does not appear to have any effect on the rest of your posted code.
카테고리
도움말 센터 및 File Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!