Variable originally saved as a structure cannot be instantiated as an object and will be read in as a uint32
    55 visualizzazioni (ultimi 30 giorni)
  
       Mostra commenti meno recenti
    
    Anna Case
 il 27 Apr 2020
  
    
    
    
    
    Commentato: JEROMY HRABOVECKY
 il 18 Apr 2023
            Hello,
I am trying to load a *.mat file which contains a structure. This is not working in MATLAB 2019a or 2020a. I get:
Warning: Variable 'structure_list' originally
saved as a structure cannot be instantiated as
an object and will be read in as a uint32. 
and later on in my application, it errors out. I don't think "structure" is something I am missing in my path as I am able to define and operate on structures just fine. How can I load this correctly? 
Edit: I can save and load other structures just fine, so my working theory is that whoever wrote this app maybe defined another "structure" class. I'm leaving this open for now in case someone has more input.
Edit2: Yeah, someone made a class and called it structure.
0 Commenti
Risposta accettata
  Steven Lord
    
      
 il 27 Apr 2020
        I'm guessing you are able to create and work with struct arrays, which is one of the built-in types in MATLAB. I suspect your edit of your question is correct, that the structure_list variable was created as an instance of a user-defined class named structure. If the definition of the structure class was not present when you tried to load it, MATLAB wouldn't know how to interpret the saved data as a structure object.
It would be like trying to turn a kitchen's worth of ingredients (the data in the MAT-file) into a cooked meal (object): easy if you have a recipe (the class definition), perhaps not so easy if you don't.
I reopened this question so that if someone else encounters this same error message in the future they can find the discussion in a search and learn the potential (IMO probable) cause.
2 Commenti
  Steven Lord
    
      
 il 29 Apr 2020
				Once you have the class definition, you can just load or construct it as normal and use it in methods of your app, store it in properties of your app, etc.
Più risposte (1)
  Farid
 il 6 Ago 2022
        I got the same error just because for some reason the toolbox that was supposed to interpret the loaded file (in my case ''deep learning toolbox'') did not function correctly and didn't apear in the apps section. I fixed the problem by reinstalling it. 
Good luck 
1 Commento
  JEROMY HRABOVECKY
 il 18 Apr 2023
				Thanks for the explanation. In fact, a file was inadvertently removed from my file pathway, preventing a subset of data to be read in properly. I just added the folder back to the path and everything works again.
Vedere anche
Categorie
				Scopri di più su Variables in Help Center e File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!



