フィルターのクリア

Recursion for Unnesting 1x1 Cell Array

2 ビュー (過去 30 日間)
Qasim Hassan
Qasim Hassan 2019 年 4 月 11 日
コメント済み: James Tursa 2019 年 4 月 11 日
I have been getting continuous errors for reaching the maximum recursion limit when running various test cases for my function. Since unnesting a 1x1 cell array to get a string can usually be done by:
ca = {{{'math'}}}
while iscell(ca)
ca = ca{1}
end
out = ca
For recursion, I did this:
function out = doYouEverFeel(ca)
if ischar(ca)
out = ca
else
out = doYouEverFeel(ca{1});
end
end
Why is this not working?

採用された回答

James Tursa
James Tursa 2019 年 4 月 11 日
編集済み: James Tursa 2019 年 4 月 11 日
Are you sure it is a single quote char string 'example' and not a double quote string "another_example"? What is the actual error message displayed? Your recursion code will only work if the end result is always a char variable.
  2 件のコメント
Qasim Hassan
Qasim Hassan 2019 年 4 月 11 日
編集済み: Qasim Hassan 2019 年 4 月 11 日
Yes, it is always single quote char strings.
ERROR: Maximum recursion limit of 500 reached.
EDIT: I realized something was amiss in my test case file. Code runs as expected.
James Tursa
James Tursa 2019 年 4 月 11 日
Is your nested cell really more than 500 levels deep? I would rewrite your recursion function to instead simply use your while loop.
function out = doYouEverFeel(ca)
while iscell(ca)
ca = ca{1}
end
out = ca
end

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

その他の回答 (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