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)

2 comentarios

madhan ravi
madhan ravi el 15 de Feb. de 2019
what inequality do you want to imply?
CESAR LOPEZ
CESAR LOPEZ el 15 de Feb. de 2019
im sorry,
make x and z greather than zero

Iniciar sesión para comentar.

Respuestas (1)

Star Strider
Star Strider el 15 de Feb. de 2019

0 votos

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.

Categorías

Más información sobre 2-D and 3-D Plots en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

el 15 de Feb. de 2019

Respondida:

el 15 de Feb. de 2019

Community Treasure Hunt

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

Start Hunting!

Translated by