how to select corresponding values to a column
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Usama Bin Khalid
el 15 de Mzo. de 2021
Comentada: David Hill
el 16 de Mzo. de 2021
I have a data set with x and y...like 100 each in a column...x is a number..y is a value of a paramter
for x i have selected specific values say i have selected 1,15,30,45,60,75,90,100
now i want matlab to select corresponding values of y that are to x...
i know its simple but am dealing with something complex..juts need to know the quick answer. Thanks
0 comentarios
Respuesta aceptada
David Hill
el 15 de Mzo. de 2021
yourMatrix=[(1:100)',randi(100,100,1)];
y=yourMatrix([1,15,30,45,60,75,90,100],2);
2 comentarios
David Hill
el 16 de Mzo. de 2021
yourMatrix=[(1:100)',randi(100,100,1)];
y=yourMatrix(ismember(yourMatrix(:,1),[1,15,30,45,60,75,90,100]),2);
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!