lookupTable
Nessuna licenza
Creates a lookup table for a collection of key/value pairs. Keys can be ANY data-type (although indexing over function handles might produce unexpected/incorrect behavior)
Examples:
weatherStruct = struct('clouds','rain','windy','cold');
obj = weatherObject(weatherStruct,...);
tbl = lookupTable('today''s weather', weatherStruct,obj,'found weather obj',0.0123,'random data here');
A = tbl('today''s weather')
= weatherStruct
A = tbl(obj)
= 'found weather obj'
A = tbl(0.0123)
= 'random data here'
k = tbl.key(1) %equal to first element of key
= 'today''s weather'
v = tbl.value(2) %equal to second element of value
= 'found weather obj'
key = tbl.contents('-key')
= {'today''s weather',obj,123}
value = tbl.contents('-value')
= {weatherStruct,'found weather obj','random data here'}
Cita come
Dan Cohn (2026). lookupTable (https://it.mathworks.com/matlabcentral/fileexchange/19381-lookuptable), MATLAB Central File Exchange. Recuperato .
Compatibilità della release di MATLAB
Compatibilità della piattaforma
Windows macOS LinuxCategorie
- MATLAB > Language Fundamentals > Data Types > Tables >
- MATLAB > Language Fundamentals > Data Types > Structures >
- MATLAB > Language Fundamentals > Data Types > Cell Arrays >
- MATLAB > Language Fundamentals > Data Types > Function Handles >
- MATLAB > Language Fundamentals > Data Types > Dictionaries >
Tag
Riconoscimenti
Ispirato: dict
Scopri Live Editor
Crea script con codice, output e testo formattato in un unico documento eseguibile.
| Versione | Pubblicato | Note della release | |
|---|---|---|---|
| 1.0.0.0 | Improved function help and code readability |
