Dot indexing is not supported for variables of this type+ App designer

2 次查看(过去 30 天)
At below line, I am getting error: "Dot indexing is not supported for variables of this type." what could be the possible reason?
app.idx = listdlg('ListString', {sFOLDERS(:).name}, 'SelectionMode', 'single', ...
'ListSize', [160,90]*4);
here sFOLDER is defined as;
app.sFOLDERS = dir(PTH);
app.sFOLDERS = app.sFOLDERS(...
[app.sFOLDERS.isdir] & ...
~strcmp({app.sFOLDERS.name},'.') & ... % to remove entry '.'
~strcmp({app.sFOLDERS.name},'..') ); % and entry '..'

采纳的回答

Jon
Jon 2020-7-28
编辑:Jon 2020-7-28
Usually when I unexpectedly get that error message it is because the object is empty. Are you sure there are folders that match your criteria. Otherwise maybe app.sFOLDERS is empty. You can explicitly check using the isempty function
Also, maybe I didn't read your code carefully enough but in that first line
app.idx = listdlg('ListString', {sFOLDERS(:).name}, 'SelectionMode', 'single', ...
'ListSize', [160,90]*4);
should that be app.sFOLDERS(:).name, rather than just sFOLDERS(:)?
By the way, you can format your code nicely in your question by using the code button in the Answers toolbar
  1 个评论
Medical Imaging
Medical Imaging 2020-7-29
Thank you for the suggestion. I believe app.sFOLDERS(:).name should be there. I will try and check on that. The code section seems good to incorporate in message section. Appreciated.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Environment and Settings 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by