How to create a vector inside a loop with data from a struct ?
2 次查看(过去 30 天)
显示 更早的评论
Hello! I'm having some troube making a vector inside a loop with data from a struct. The struc is called :
ECG (1x1 struct with 2 fields)
From these fields, I want to acess a specific one, that is
ECG.event (1×45 struct array with fields:
latency
type)
In the column 'type' I have the triggers from the type char, for exalmple 'S A' , 'S B' , 'S C' , 'S D'. And in the column 'latency' I have the timings they ocured (numeric values). From these fields I want to access data that is in the column 'latency' and 'type'.
I want to know what is the the time difference between 1) a stimulus 'S B' when it is preceeded by a stimulus 'S A', and also the time difference between 2) a stimulus 'S C' when it is preceeded by a stimulus 'S A'.
I need to obtain two vectors, one for each case 1) and 2).
Do you know how I can do it?
Thank you so much in advance! You can find the struc .mat file attached.
1 个评论
dpb
2021-10-16
Please attach a .mat file with a sample of the struct
Without something to work on it's going to be more difficult to try to recreate a matching structure to test...
采纳的回答
Stephen23
2021-10-16
编辑:Stephen23
2021-10-17
T = {ECG.event.type}; % comma-separated list
L = [ECG.event.latency]; % ditto
xAB = strcmp(T(1:end-1),'A') & strcmp(T(2:end),'B');
xAC = strcmp(T(1:end-1),'A') & strcmp(T(2:end),'C');
d = diff(L);
dAB = d(xAB)
dAC = d(xAC)
2 个评论
Stephen23
2021-10-17
编辑:Stephen23
2021-10-17
"Can you please explain the xAB and xAC logic please?"
They are logical vectors (i.e. only boolean true/false values) which are true only when 'A' immediately precedes 'B' or 'C' respectively, as you requested in your original question, within the cell array T. They use indexing to compare the content of adjacent cells of the cell array T. Due to that indexing, they each have numel(T)-1 elements (which is exactly the same number of elements d has).
"It gives me a 1×717 logical array only with 0s for each case (xAB and xAC)."
Assuming that this is true, then in no cases do you have 'A' immediately preceding 'B' or 'C'.
Lets take a closer look at your data:
S = load('ECG.mat')
ECG = S.ECG
T = {ECG.event.type}
Interesting... you did not tell us that there are other characters, and sadly computers cannot read your mind (nor I) and know that you want to ignore those various 'S' characters, space characters, and perhaps the entire text of "the cat in the hat". Computers (like me) are very stupid and can only do what they are told to do, so you have to give them very clear and precise instructions (including what to ignore).
Assuming that you want to ignore all of those other characters, then we could do this:
T = regexprep({ECG.event.type},'[^ABCD]','')
xAB = strcmp(T(1:end-1),'A') & strcmp(T(2:end),'B');
xAC = strcmp(T(1:end-1),'A') & strcmp(T(2:end),'C');
nnz(xAB)
nnz(xAC)
L = [ECG.event.latency];
d = diff(L);
dAB = d(xAB)
dAC = d(xAC)
There are other approaches, e.g. using REGEXP or CONTAINS or STRFIND or loops or ... etc.
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!