Foreach for containers.Map

Provides a possibility to iterate over the items of a map
657 Downloads
Updated 3 Sep 2010

View License

Matlab offers functionality for maps / dictionaries (a key-value store datatype). Iterating over a map can be cumbersome and that's where foreach steps in.

Using
resultmap = foreach(map, fctH)
calls function handle fctH with each item of the map. The result is stored in the resultmap which has the same keys as the original map.

If you have two or more datasets, and you want to process/plot them identically one function call is enough.
This turned out to be useful if you write a script processing one dataset. But then you want to compare to another ... either you can duplicate code or you iterate over the items. Foreach simplifies this iteration and keeps a readable key to the dataset ('which dataset has index 3?')

So long it's not much more than iterating over a cell array. However, if you combine foreach with some anonymous functions you get a much more powerful tool: foreach can call the function handle with the current iteration key so that one f.ex. can attach the corresponding legend-entry to a plot, using the corresponding axis ...

Try also 'help foreach' for more information and examples.

I hope you'll find it useful. Feedback is welcome!

Cite As

Jochen Rau (2024). Foreach for containers.Map (https://www.mathworks.com/matlabcentral/fileexchange/28630-foreach-for-containers-map), MATLAB Central File Exchange. Retrieved .

MATLAB Release Compatibility
Created with R2010a
Compatible with any release
Platform Compatibility
Windows macOS Linux
Categories
Find more on Dictionaries in Help Center and MATLAB Answers

Community Treasure Hunt

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

Start Hunting!
Version Published Release Notes
1.0.0.0