Attempt to reference field of non-structure array

56 views (last 30 days)
Hi,
I'm trying to run some raw data through a piece of matlab code and for some reason it's coming up with this error
"Attempt to reference field of non-structure array"
The data set had a quotation marks around each row of data, for example
  • "1, .4314, 15314, 000,"
  • "2, .4464, 14135, 322,"
which I had to remove because it was giving me a different error (something along the lines of can't read that data).
Here are the lines which are causing the error
  • 15 load Spec1M2B.txt
  • 16 Time_1 = Spec1M2B.txt(:,2);
and here is the error message
  • Error in PermeabilityTest111011 (line 16)
  • Time_1 = Spec1M2B.txt(:,2);
the .m file is called PermeabilityTest111011, and the .txt file it's calling to get the data is called Spec1M2B.txt.
The rest of the code is not that complicated, it takes the columns and then graphs them, but I need to get through this step to figure out what's wrong. If you think I should upload the .m and .txt files please let me know and I will do so. Thank you very very much.

Accepted Answer

Evan
Evan on 18 Jul 2013
Edited: Evan on 18 Jul 2013
You need to remove ".txt.", as your test file isn't loaded in as a structure and Matlab is interpreting the period as referencing a struct. The way you're loading you data, it should come in as Spec1M2B instead of Spec1M2B.txt.
Basically, in matlab, a period isn't just another character that can be used in a variable name.
Does this fix it?
load Spec1M2B.txt
Time_1 = Spec1M2B(:,2);
  1 Comment
Wagner
Wagner on 15 Jun 2014
Hi, I am having the same problem but I don't have the .txt at the end. here is the line with the error:
Error in run2 (line 17)
plot(temp.data(:,5),temp.data(:,3));

Sign in to comment.

More Answers (3)

Syed
Syed on 18 Jul 2013
Clearly I am a noob. It fixed it! Thank you so so very much Evan!
  2 Comments
Evan
Evan on 18 Jul 2013
Edited: Evan on 18 Jul 2013
Haha, no worries! And don't forget to hit "Accept" on this answer so that this thread will be sorted in with the resolved questions.
John
John on 31 Mar 2015
I have the same error in my simulation. This is the error;
Attempt to reference field of non-structure array.
Error in LTE_init_load_BLER_curves (line 25) BLER_data = load(LTE_config.BLER_curves.filenames{cqi_idx},'simulation_results','BLER','SNR');
Error in LTE_sim_main (line 7) [ BLER_curves, CQI_mapper ] = LTE_init_load_BLER_curves;
I will appreciate any help. Thank you very much.

Sign in to comment.


Joshah Magdalene
Joshah Magdalene on 9 Feb 2020
Edited: Joshah Magdalene on 9 Feb 2020
I too have the same error.
Attempt to reference field of non-structure array.
I find this error in the below line of my code.
index = int32(pose.subset(j))+1;
I will be grateful if it is sorted out. Thank You!

Soroush Asarzadeh
Soroush Asarzadeh on 18 Feb 2016
Edited: Soroush Asarzadeh on 18 Feb 2016
Hi, I have a new question in the same topic. I want to add some numerical items to a popup menu according to the number of rows of a matrix named 'Top'. For example if Top has 5 rows, it has to add 5 items (1;2;3;4;5) to it, here is my code but it doesn't seem to work! can anybody help me?
here is the error: Attempt to reference field of non-structure array. Error in MainForm>popupmenu_NodeE_CreateFcn (line 383) Top=handles.Top;
Code:
function pushbutton_LoadExcel_Callback(hObject, eventdata, handles)
Top=xlsread('abc.xlsx',1)
handles.Top=Top;
guidata(hObject,handles);
function popupmenu_NodeE_CreateFcn(hObject, eventdata, handles)
if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
set(hObject,'BackgroundColor','white');
end
Top=handles.Top;
for i=1:size(Top,1)
set(hObject,'String',[get(hObject,'String');i])
end

Products

Community Treasure Hunt

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

Start Hunting!