""Unrecognized variable name 'Time'" I am getting this type of error during ploting , how I can fix this?
1 次查看(过去 30 天)
显示 更早的评论
Warning: Variable names were modified to make them valid MATLAB identifiers. The original names are saved in the VariableDescriptions
property.
Error using check (line 12)
Unrecognized variable name 'Time'.
data_files_nr_mai = ls('*.csv');%list
const = 71.940; %upper_pyranometer_constant
%for jj = 1 : size(data_files_nr_mai,1);
data = readtable('KLOG0024.CSV');
time = data(:,{'Time'});
uper_p = data(:,{'Pyrn1_Avg'});
a = table2array(uper_p);
b = a .* const;
%for jj = 1 : size(data_files_nr_mai,1);
figure
%subplot(7,4,jj)
plot(time{:,:},b);
%plot(a,b);
0 个评论
采纳的回答
Jeffrey Clark
2023-2-13
@Ritesh, if you remove the first 2 header lines from the CSV it will work properly. There is probably an alternative to have MATLAB skip the first two lines but you would have to search the heirarcy of help for Create table from file - MATLAB readtable (mathworks.com) to see what options are needed to do so.
3 个评论
Jeffrey Clark
2023-2-17
@Ritesh if you will post one that works with your original code I may be able to tell you.
更多回答(1 个)
Stephen23
2023-2-17
The files are formatted slightly differently, as these screenshots show:
The READTABLE() documentation gives some options that specify the header size or data location, e.g.:
opt = {'VariableNamesLine',3, 'NumHeaderLines',2};
t08 = readtable('KLOG0008.csv', opt{:})
t24 = readtable('KLOG0024.csv', opt{:})
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Environment and Settings 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!