Name and label dimensions of an array?
6 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Simple example: I have a set of transfer function measurements for different angle and different loudspeakers in the box. So that's 3-dimensional data array with the dimensions being frequency, angle and driver number. I would like to be able to name the dimensions "frequency", "angle" and "driver" and associate scales with them. So the scale frequency would be [0 5 10 .. ] Hz, angle would be [0 30 60 ...] degrees and driver could be either numbers or labels {'woofer', 'tweeter'}
This could be used to access the data so instead of x = fx(23,37,2); Syntax could be x = get(fx,'frequency',1000,'angle',30,'driver','woofer'); Or even x = frequency{1000}.angle{30}.driver{'woofer'}'
I can certainly write a class like this myself but that seems such a basic functionality that I hope someone has already written something like this.
0 Commenti
Risposte (1)
Walter Roberson
il 2 Feb 2014
2 Commenti
David Pate
il 28 Gen 2021
Modificato: David Pate
il 28 Gen 2021
I second the OP's request. Due to Matlab's natural use of array arithmetic and vectorized operatorions (see vectorization), it is common to extend arrays into higher dimensions. The variable name can indicate what object is being represented by the array, but it would nice to also have metadata to reveal the order of the dimensions (i.e., to name the dimensions).
Vedere anche
Categorie
Scopri di più su Logical in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!