How do I remove the brackets from the numeric values around the zeros, so that only the numeric values are left and I am able to use boolean logic to get a solution ( 1 or 0)?

5 ビュー (過去 30 日間)
"( (1) | (0) )"
"(0)"
"( (0) | (1) | (0) )"
"( (0) | (0) )"
"( (1) | (0) )"
""
"(0)"
"( (0) & (1) & (0) )"
"(1)"
"( (0) | (0) | (0) )"
""
"(( (0) & (0) & (1) & (0) & (0) & (1) & (0) & (0) ) | ( (0) & (0) & (0) & (1) & (0) & (0) & (1) & (0) & (0) ))"
""
  3 件のコメント
Daniel M
Daniel M 2019 年 11 月 14 日
I agree. The format is strange. I doubt you really have a comma separated list of strings like that.
Michael Tross
Michael Tross 2019 年 11 月 15 日
Thank you! I was able to get the solutions for the expressions using 'arrayfun' below. If there are anymore "burning" questions, I'll be sure to upload the file.

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

採用された回答

Daniel M
Daniel M 2019 年 11 月 14 日
編集済み: Daniel M 2019 年 11 月 14 日
Hmm, seems like this was an opportunity to apply what you learned yesterday regarding regexprep, if you're trying to remove/replace strings. But you likely don't have to. It also seems that these already are boolean expressions in the form of strings. For example
x = ["( (1) | (0) )", "(0)", "( (0) | (1) | (0) )", "( (0) | (0) )", "( (1) | (0) )", "", "(0)", "( (0) & (1) & (0) )", "(1)", "( (0) | (0) | (0) )", "", "(( (0) & (0) & (1) & (0) & (0) & (1) & (0) & (0) ) | ( (0) & (0) & (0) & (1) & (0) & (0) & (1) & (0) & (0) ))", ""];
boolexp = arrayfun(@str2num, x, 'UniformOutput',0);
ans =
1×13 cell array
Columns 1 through 10
{[1]} {[0]} {[1]} {[0]} {[1]} {0×0 double} {[0]} {[0]} {[1]} {[0]}
Columns 11 through 13
{0×0 double} {[0]} {0×0 double}
Note that it returns empty where the string is empty. You can deal with this with
emptyInds = cellfun(@(v) isempty(v), boolexp, 'UniformOutput',1);
boolexp(emptyInds) = {NaN};
Unfortunately, can't use cell2mat to convert to an array because boolexp contains logicals and NaN. You would have to convert the logicals to doubles first (but then it wouldn't be boolean, would it?). Or deal with the empty cells another way. Or leave it the way it is. Up to you.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeCharacters and Strings についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by