Update table from columns of another table
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Fabio
el 21 de Dic. de 2021
Comentada: Fabio
el 21 de Dic. de 2021
Hello everyone,
I have two tables, “Atab” and “Btab”, and I would like to update “Atab” by adding all the columns (variables) and their respective values that are in “Btab” but not in “Atab” (meaning columns “Trans” and “Det”).
See in attached “Atab”, “Btab” and the expected “Output” in jpeg files.
Thanks in advance
0 comentarios
Respuesta aceptada
Walter Roberson
el 21 de Dic. de 2021
Avars = A.Properties.VariableNames;
Bvars = B.Properties.VariableNames;
BnotA = setdiff(Bvars, Avars);
Atab = [Atab, B(:,BnotA)];
Más respuestas (0)
Ver también
Categorías
Más información sobre Logical en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!