How to display the row number ?
11 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Matlab111
am 1 Feb. 2015
Beantwortet: Image Analyst
am 1 Feb. 2015
i want to know how to display a row numbers in this example:
a=[ 'X' 'Y' 'Z'
30.4596 37.6811 93.0000
154.6678 172.8173 91.0000
44.7308 175.6077 94.0000
90.8282 191.0239 91.0000
149.5394 149.1930 70.0000];
b= 'Z'
[93.0000];
tolerance = 0.00001;
% Subtract third columns
matches = abs(a(:,3) - b) < tolerance
% Extract matching rows.
c = a(matches, :)
if you run this code you will get number of matches 'b' with 'a', and now i want that row number also to display, which means that if 'b' is matched with 'a'(column 3), now i have to display the corresponding row number.
Output should be like
d=[1];%(represent row number)
NOTE: Want to display 'b' is belongs to which number of row's in 'a'
0 Kommentare
Akzeptierte Antwort
Weitere Antworten (1)
Image Analyst
am 1 Feb. 2015
Again, this was asked and answered already: http://www.mathworks.com/matlabcentral/answers/174121#comment_263635
0 Kommentare
Siehe auch
Kategorien
Mehr zu Matrix Indexing 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!