extract 1 row data of 1 table

3 ビュー (過去 30 日間)
hang dong
hang dong 2019 年 5 月 24 日
編集済み: Jatin 2024 年 8 月 23 日
I want to extract the data of a row in a table, how to do it
exam: Name address age
hang VN 18
nam vn 40
lan vn 23
I want to retrieve the information of a man named Nam
help me!
  3 件のコメント
Ramesh Bala
Ramesh Bala 2019 年 5 月 24 日
exam1(1,1:length(exam))=exam; -for 1st row and do the same for rest
hang dong
hang dong 2019 年 5 月 24 日
1.PNG
I want to find an element in the table
exam: from pos = 11 i can find iwant = 542013

サインインしてコメントする。

回答 (1 件)

Jatin
Jatin 2024 年 8 月 23 日
編集済み: Jatin 2024 年 8 月 23 日
Hi hang dong,
There are few ways how this can be achieved.
1. If you don’t have fixed value to search on every time, you can use logical vectors to extract the row with value equal to the key and you can get the required output using the syntax given below for your example table:
% Extract the age of the person named 'nam'
% Use the equality operator to compare strings directly
Age = dataTable.Age(strcmp(dataTable.Name, 'nam'));
2. If the “Name” column is used every time for accessing table values, you can set the “RowNamesproperty of the table to the “Name” column and then you can access the table values using a syntax as below:
% Set the 'Names' as row names using the object property
dataTable.Properties.RowNames = Names;
% Extract the age of the person named 'nam'
Age = dataTable{'nam', 'Age'};
Kindly go through this documentation for more on accessing values from table:
Hope this helps!

カテゴリ

Help Center および File ExchangeTables についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by