Determine the relational operator in an expression
Show older comments
I need to find out the operator in an expression.
I tried to convert the symbolic expression using char and then find the position of the operator ("<=","==",">="). However, when using the char function, Matlab always puts it in the form "<=" when it is an inequality. Therefore I never find the gt operator.
syms x y
exp1 = x <= y;
exp2 = x == y;
exp3 = x >= y;
charExp = char([exp1,exp2,exp3])
2 Comments
syms x y
exp1 = x <= y
exp2 = x == y
exp3 = x >= y
But it also flipped the left and right hand sides. So the two are equivalent. All that matters is what is on each side.
Torsten
on 15 Nov 2023
Your expressions already have to be of type "char", not of type "sym", to extract the operator used.
Answers (3)
Pooja Kumari
on 15 Nov 2023
Edited: Pooja Kumari
on 15 Nov 2023
Dear Geovane,
It is my understanding that you are facing issues with converting symbolic expression using "char".
It seems that the "char" function in MATLAB always represents inequalities using the "<=" operator, regardless of the original operator. Unfortunately, there is no direct way to obtain the original ">=" operator using the "char" function. It is clear that "exp3" will give "x>=y" but it switched to "<=" which is correct expression as shown below:
syms x y
exp3 = x >= y;
char(exp3)
Regards,
Pooja
Then you can use contains to run down the various math operators you might possibly encounter, and then take appropriate action
syms x y
exp3 = x >= y;
% Cast to string.
thisExpression = char(exp3)
if contains(thisExpression, '>=')
% Operator is >= so do something with that knowledge.
fprintf('Operator is >=.\n');
elseif contains(thisExpression, '>')
% Operator is > so do something with that knowledge.
fprintf('Operator is >.\n');
elseif contains(thisExpression, '<=')
% Operator is <= so do something with that knowledge.
fprintf('Operator is <=.\n');
elseif contains(thisExpression, '<')
% Operator is > so do something with that knowledge.
fprintf('Operator is <.\n');
elseif contains(thisExpression, '~=')
% Operator is ~= so do something with that knowledge.
fprintf('Operator is ~=.\n');
% etc for the other possible operators.
end
7 Comments
Geovane Gomes
on 15 Nov 2023
Steven Lord
on 15 Nov 2023
The two expressions a > b and b < a are mathematically equivalent. Symbolic Math Toolbox reserves the right to rewrite one of those expressions as the other if it feels it necessary.
Can you say more about what you're hoping to do that requires you to distinguish those two mathematically equivalent statements?
Paul
on 15 Nov 2023
Will the Symbolic Math Toolbox ever keep >= in a symbolic expression? Function hasSymType doesn't list 'ge' (nor 'gt') as a valid symbolic type.
syms x y
exp1 = 2*x + 3*y <= 5
exp2 = 2*x + 3*y == 5
exp3 = 2*x + 3*y >= 5
[A1,b1] = equationsToMatrix(lhs(exp1)==rhs(exp1))
[A2,b2] = equationsToMatrix(lhs(exp2)==rhs(exp2))
[A3,b3] = equationsToMatrix(lhs(exp3)==rhs(exp3))
Image Analyst
on 16 Nov 2023
Edited: Image Analyst
on 16 Nov 2023
@Geovane Gomes not sure why you didn't yet, but could you explicitly answer @Steven Lord's question: "Can you say more about what you're hoping to do that requires you to distinguish those two mathematically equivalent statements?" Do you just want to get the coefficients? But if you have the expression, you already know the coefficients. Or is your expressions comcing to you somehow in some mysterious method where you don't know the coefficients yet? If so, what exactly might be an input that you need to inspect to find the coefficients?
Geovane Gomes
on 16 Nov 2023
If you can rely on x always being on the left in your "test" expressions, you can test for y being on the left in the result returned by char (to detect that the symbolic toolbox reversed the order of the comparison). For example:
syms x y
exp1 = x <= y;
exp2 = x == y;
exp3 = x >= y;
charExp3 = char(exp3)
if contains(charExp3, '<=')
if charExp3(1) == 'x'
operator = '<='
else
operator = '>=' % if symbolic toolbox swapped the comparison, swap the result
end
end
Categories
Find more on Mathematics in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!