フィルターのクリア

Structs Help on indexing

1 回表示 (過去 30 日間)
Hassan Hijazi
Hassan Hijazi 2020 年 12 月 8 日
回答済み: Ameer Hamza 2020 年 12 月 8 日
I have a struct with 7 feilds called climate.info
one of the feilds is City, and withing this feild there are hundreds of cities and the climate at certain times.
Therefore there are hundreds of entries of the same city at different times.
Is it possible to get the values of all the times of only that one specific city.
  2 件のコメント
Hassan Hijazi
Hassan Hijazi 2020 年 12 月 8 日
This is an example of the struct, and I want all the data values that are only for the city of abidjan
Walter Roberson
Walter Roberson 2020 年 12 月 8 日
Is climate.info.City a struct array ("hundreds of entries") that has fields that give the city name and fields that give the climate information ?

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

回答 (1 件)

Ameer Hamza
Ameer Hamza 2020 年 12 月 8 日
Try something like this
city_name = 'Abidjan';
idx = contains({climate.info.name}, city_name);
city_data = climate.info(idx)

カテゴリ

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

タグ

製品

Community Treasure Hunt

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

Start Hunting!

Translated by