App Designer, "Conversion to double from struct is not possible." when using importdata()

8 views (last 30 days)
This error occurs at the following line in my script:
app.M(t) = importdata(filepathtrades{t,1});
For context, this is in the loop:
for t = 1:app.DirLeng
app.M(t) = importdata(filepathtrades{t,1});
end
Where app.DirLeng = 3 in this case. I am trying to import multiple excel files (3) specified by the filepaths contained in a 3 by 1 cell array (of strings). I am attempting to store these two dimensional data matrices into a three dimensional matrix, M. I have tried both:
app.M(t) = importdata(filepathtrades{t,1});
and
app.M(:,:,t) = importdata(filepathtrades{t,1});
but still get the same error. I have re-created this section of my code into a standard MATLAB script outside of App Designer and it performs just as I expect it to. Does anyone know if this is some sort of bug in App Designer? or if my syntax is wrong? or if there is an alternative way to do this that won't throw an error?
I can add more info about my script if need be. Thanks for helping!
  1 Comment
Matthew Sisson
Matthew Sisson on 8 Jun 2017
Edited: Matthew Sisson on 8 Jun 2017
I divided the line into two:
D = importdata(filepathtrades{t,1});
app.M(t) = D;
but I still get the same error, although this time it is at the second line. D is a 1x1 structure with 3 fields inside, each a 1x1 structure as well. I'm really trying to save a structure within another.

Sign in to comment.

Accepted Answer

Chris Portal
Chris Portal on 10 Jun 2017
I think the problem is you may have initialized app.M to [] somewhere. By doing so, and then indexing into it using app.M(t), MATLAB is interpreting M as a numeric array you're trying to index into. This causes MATLAB to try and convert your struct D into a double, which it can't. Instead, you can either:
  1. Not initialize M, and let it get initialized to a struct on its own when you first assign D to it.
  2. Or initialize M to an empty struct with the correct field names. Something like:
struct('data', [], 'textdata', [])
  2 Comments
Stephen23
Stephen23 on 10 Jun 2017
Edited: Stephen23 on 10 Jun 2017
Indeed. Once the the unrelated aspects of the code are stripped away (e.g. importdata, etc) we are left with assigning a structure to a double:
>> M = [1,2,3];
>> M(2) = struct('a',1)
??? The following error occurred converting from struct to double:
Error using ==> double
Conversion to double from struct is not possible.
>>
Solution: do not assign a structure to a double. And read the MATLAB error messages: they are not cryptic messages.
Matthew Sisson
Matthew Sisson on 12 Jun 2017
I think this will work, but I found a workaround that is just as effective. With App Designer, it is my understanding that you need to initialize your variables in the "properties" section. I had initialized M as:
M;
I tried to not specify the type but I think MATLAB assumes that it is a double by default? I could have initialized this as a structure as you both mentioned and I'm sure it will work perfectly. I wound up using the following:
app.M = importdata(filepath);
if app.CheckBox.Value
for t = 2:app.DirLeng
Mtemp = importdata(filepathtrades{t});
app.M = [app.M,Mtemp];
end
end
I'm not sure which way is more proper or faster, but I think this method happened to work better for my program since there may or may not be multiple sets of data to import, depending on the state of the checkbox.
Thank you both for your help and you quick responses! Much appreciated!

Sign in to comment.

More Answers (0)

Categories

Find more on Develop Apps Using App Designer in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!