Foreach for containers.Map

Provides a possibility to iterate over the items of a map
657 descargas
Actualizado 3 sep 2010

Ver licencia

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!

Citar como

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

Compatibilidad con la versión de MATLAB
Se creó con R2010a
Compatible con cualquier versión
Compatibilidad con las plataformas
Windows macOS Linux
Categorías
Más información sobre Dictionaries en Help Center y MATLAB Answers.

Community Treasure Hunt

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

Start Hunting!
Versión Publicado Notas de la versión
1.0.0.0