how to select corresponding values to a column
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Usama Bin Khalid
am 15 Mär. 2021
Kommentiert: David Hill
am 16 Mär. 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 Kommentare
Akzeptierte Antwort
David Hill
am 15 Mär. 2021
yourMatrix=[(1:100)',randi(100,100,1)];
y=yourMatrix([1,15,30,45,60,75,90,100],2);
2 Kommentare
David Hill
am 16 Mär. 2021
yourMatrix=[(1:100)',randi(100,100,1)];
y=yourMatrix(ismember(yourMatrix(:,1),[1,15,30,45,60,75,90,100]),2);
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Variables finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!