How show/plot data from struct

1 次查看(过去 30 天)
I am trying to show data, by using this code:
n = length(patient_1_e.patient_1);
figure;
for i = 1:n
if (contains(patient_1_e.patient_1(i).Name, 'SM_dayOverview_day') == 1)
% put the field data inside the new variable
process(i).Name = patient_1_e.patient_1(i).Name;
process(i).Data = patient_1_e.patient_1(i).Data;
if isempty(process(i).Name) ~= 1
disp("nih")
process(i).Data{:,1} = datetime(process(i).Data{:,1}, 'InputFormat' ,'dd-MMM yyyy');
% plot (process(i).Data{:,1}, process(i).Data{:,11});
end
end
end
But I got this error:
Error using datetime (line 616)
Unable to parse date/time text using the format 'dd-MMM yyyy'. If the date/time text contain day, month, or time zone
names in a language foreign to the 'en_US' locale, those might not be recognized. You can specify a different locale
using the 'Locale' parameter.
Error in Main (line 39) process(i).Data{:,1} = datetime(process(i).Data{:,1}, 'InputFormat' ,'dd-MMM yyyy');
this is the content of the data "patient_1_e.patient_1(1).Data":
Any idea how to solve this?
  1 个评论
dpb
dpb 2018-7-14
Attach a .mat file with a small(ish) subset of the data...it's not evident to me where the error is from just scanning the code but w/o the actual data structure it's tough. One would guess one could avoid the looops and all, but need to see the actual structure.

请先登录,再进行评论。

采纳的回答

Walter Roberson
Walter Roberson 2018-7-14
Your Data{:,1} is 'Wed', which is not in the input format 'dd-MMM yyyy'
I showed you how to input these dates in your previous Question, and I am waiting for your response to what I asked in https://www.mathworks.com/matlabcentral/answers/408846-import-csv-data-into-matlab?s_tid=prof_contriblnk#comment_585882

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Text Data Preparation 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by