Search for a value in a table and get the corresponding value from the 2nd column
    3 views (last 30 days)
  
       Show older comments
    
Hi guys,
I have a table of values and would like to search for a value and then get the corresponding value from the 2nd column. Can anyone help me with this problem? 
Thanks a lot!
0 Comments
Accepted Answer
  Star Strider
      
      
 on 2 Apr 2023
        If you are searching for an exact match, try something like this — 
Col1 = linspace(0, 10, 21).';
Col2 = randn(numel(Col1),1);
T1 = table(Col1,Col2)
Val = 3;
Result = T1{Col1==Val,:}
Much depends on the table and what you want to do.  This is simply an illustration of the most obvious approach.  
.
More Answers (0)
See Also
Categories
				Find more on Structures in Help Center and File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!