Attempt to reference field of non-structure array
32 次查看(过去 30 天)
显示 更早的评论
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.
0 个评论
采纳的回答
Evan
2013-7-18
编辑:Evan
2013-7-18
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 个评论
Wagner
2014-6-15
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));
更多回答(3 个)
Syed
2013-7-18
2 个评论
John
2015-3-31
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.
Joshah Magdalene
2020-2-9
编辑:Joshah Magdalene
2020-2-9
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!
0 个评论
Soroush Asarzadeh
2016-2-18
编辑:Soroush Asarzadeh
2016-2-18
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
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Cell Arrays 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!