Name and label dimensions of an array?
6 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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 comentarios
Respuestas (1)
Walter Roberson
el 2 de Feb. de 2014
2 comentarios
David Pate
el 28 de En. de 2021
Editada: David Pate
el 28 de En. de 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).
Ver también
Categorías
Más información sobre Logical en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!