Structs Help on indexing
显示 更早的评论
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
2020-12-8
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
2020-12-8
Try something like this
city_name = 'Abidjan';
idx = contains({climate.info.name}, city_name);
city_data = climate.info(idx)
类别
在 帮助中心 和 File Exchange 中查找有关 Structures 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!