Name and label dimensions of an array?
6 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
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 Kommentare
Antworten (1)
Walter Roberson
am 2 Feb. 2014
2 Kommentare
David Pate
am 28 Jan. 2021
Bearbeitet: David Pate
am 28 Jan. 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).
Siehe auch
Kategorien
Mehr zu Logical finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!