How to retrieve the specific rows with all the columns in the dataset?

조회 수: 1 (최근 30일)
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.

채택된 답변

KSSV
KSSV 2022년 8월 10일
I hope the dataset is in the form of a table. So your table is going to be of size 2832x4.
idx = T.Time==1.5 ;
T1 = T(idx,:) ;
T1.(1)
T1.Node
T1.Type
You can access your required from T1.
  댓글 수: 6
Sai Gautam Mandapati
Sai Gautam Mandapati 2022년 8월 10일
Thanks, that works fine. I just have one more question. In the code above why have you declared T1. (1)? Can you please explain? Thank you so much.
KSSV
KSSV 2022년 8월 10일
Read about table. If you want to access the first column, either you can use T.Time or T.(1). 1 stands for first column.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Spreadsheets에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by