Copy If greater than column value

2 visualizzazioni (ultimi 30 giorni)
Caitlin Ridgewell
Caitlin Ridgewell il 17 Ago 2020
I have 3 tables (A, B, and C) and I want to copy the values from table A to table C if the value of column1 in table A is between the values of columns 2 and 3 in table B. Here's an example:
TableA
Col1 Col2 Col3
---- ---- ----
7 48 210
18 18 209
... (TableA has thousands of rows)
TableB
Col1 Col2 Col3
---- ---- ----
1 0 10
... (TableB has 10 rows)
So in this case, I want to copy the first row of TableA (7, 48, 210) to TableC because TableA.Col1 (7) is between the values of TableB.Col2 (0) and TableB.Col3 (10). Ultimately, I'll write an if/else statement so all rows of the data are copied to any of 10 tables according to an extension of this logic. I tried the following code:
if TableA.Col1(:,1) >= TableB.Col2(:,1) && TableA.Col1 < TableB.Col3(:,1)
TableC = TableA;
else
TableC = NaN;
end
When I try this, TableC only has 1 NaN in it so this is clearly not the right way to do this.

Risposta accettata

Rik
Rik il 17 Ago 2020
Use rowfun or a loop. Your current logical statement is checking all rows at once.
  5 Commenti
Rik
Rik il 19 Ago 2020
Modificato: Rik il 19 Ago 2020
Seeing as you attached your data as text files without the code you used to read them to tables, I think it is fine if I solve your problem with regular matrices. (you can get my readfile function from the FEX or from the AddOn-explorer for sufficiently new releases of Matlab)
A=readfile('https://www.mathworks.com/matlabcentral/answers/uploaded_files/348413/TableA.txt');
A=cellfun(@(x) {strsplit(x,'\t')},A);
A(cellfun('prodofsize',A)==1)=[];
A=vertcat(A{:});
A(:,end)=[];
A=cellfun(@str2double,A);
B=readfile('https://www.mathworks.com/matlabcentral/answers/uploaded_files/348416/TableB.csv');
B=cellfun(@(x) {strsplit(x,',')},B);
B=vertcat(B{:});
B=cellfun(@str2double,B);
C=NaN([size(A) size(B,1)]);
for n=1:size(B,1)
L=A(:,1)>=B(n,2) & A(:,1) < B(n,3);
C(L,:,n)=A(L,:);
end
Instead of a 3D matrix you could also use a cell array to store the results:
C=cell(size(B));
for n=1:size(B,1)
L=A(:,1)>=B(n,2) & A(:,1) < B(n,3);
C{n}=NaN(size(A));
C{n}(L,:)=A(L,:);
end
Caitlin Ridgewell
Caitlin Ridgewell il 19 Ago 2020
Thank you! That worked perfectly.

Accedi per commentare.

Più risposte (0)

Prodotti


Release

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by