How to find if a symbolic operation contains a or function?

1 回表示 (過去 30 日間)
gonzalo Mier
gonzalo Mier 2020 年 11 月 17 日
コメント済み: gonzalo Mier 2020 年 11 月 19 日
I'm trying to find if a symbolic equation has the 'or' function or not.
I have tried to do this:
syms a b
has(a|b,'or') % logical 0
has(or(a,b),'or') % logical 0
I don't know if this is a bug. Do you know other ways to do this?
Thank you
  2 件のコメント
gonzalo Mier
gonzalo Mier 2020 年 11 月 17 日
For now, I am doing this:
f = a|b;
contains(char(f),'|');
If anyone has a better way, please share.
VBBV
VBBV 2020 年 11 月 18 日
strfind('a|b','|')

サインインしてコメントする。

採用された回答

Walter Roberson
Walter Roberson 2020 年 11 月 18 日
hasSymType(a|b, 'or')

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeSymbolic Math Toolbox についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by