Determine the relational operator in an expression
조회 수: 1 (최근 30일)
이전 댓글 표시
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
John D'Errico
2023년 11월 15일
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
2023년 11월 15일
Your expressions already have to be of type "char", not of type "sym", to extract the operator used.
답변 (3개)
Pooja Kumari
2023년 11월 15일
편집: Pooja Kumari
2023년 11월 15일
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
댓글 수: 0
Image Analyst
2023년 11월 15일
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
Image Analyst
2023년 11월 16일
편집: Image Analyst
2023년 11월 16일
@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?
Les Beckham
2023년 11월 16일
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
댓글 수: 0
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!