How to retrieve the specific rows with all the columns in the dataset?
    5 views (last 30 days)
  
       Show older comments
    
Hi everyone, 
I have dataset which has 2832 rows and 4 columns. In this specific dataset I want to retrieve two rows, for example in the image provided for time instant 1.5 I want to get the two values of number of packets for both cachehits and cachemisses and further to the retrieved values I want to implement the formula of Hitratio = (Cachehits)/(CacheHits+CacheMisses) *100 and get the value of hit ratio.    
  
 
  0 Comments
Accepted Answer
  KSSV
      
      
 on 10 Aug 2022
        idx = T.Time==1.5 ;
T1 = T(idx,:) ; 
T1.(1)
T1.Node
T1.Type
You can access your required from T1. 
6 Comments
More Answers (0)
See Also
Categories
				Find more on Matrix Indexing 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!
