Info
La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.
setdiff with respect to column values
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Suppose I have:
*A ={1 1 1
1 1 3
1 1 4
1 1 1
1 2 1
1 2 3
1 2 4};
B=1:6; %Lists the (complete) values for column 3 in A
- I inserted a space in between row 4 and 5 for easier viewing.
How can I identify the missing values in column 3 (with respect to column 2)? The range of values of A(:,3) is given in B (From 1-6).
Output should be something similar to this:
C={1 1 2
1 1 5
1 1 6
1 2 2
1 2 5
1 2 6};
2 comentarios
dpb
el 21 de Ag. de 2013
Indeed, a literal interpretation as I read it of OP's request would require a cell array and the missing values would look something like
{2:6;
[2 4:6;
[2 3 5 6;
... etc., ...
[1 3 5 6}
Respuestas (0)
La pregunta está cerrada.
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!