Display 4D double size with Editor datatips
Ältere Kommentare anzeigen
For ease of navigation, I would like to use the Editor datatips feature to get the size of a 4D double matrix. I noticed that if the matrix is double, the datatips displays "4-D double". If it is single precision, it correctly displays the size of the array. Is there a custom settings to change this behavior? Is it intended as such?
2 Kommentare
Catalytic
am 31 Okt. 2023
Change the behavior to what?
Olivier Roy
am 31 Okt. 2023
Bearbeitet: Olivier Roy
am 31 Okt. 2023
Antworten (1)
If you mean you want the dimensions displayed in the form AxBxCxD, I don't think there is any way to have the Editor datatip do so. However, there is a version of whos() on the File Exchange that will do it,
M=rand(3,4,5,6,2);
>> whos M
Name Size Bytes Class Attributes
M 5-D 5760 double
>> Whos M
Name Size Kilobytes Class Attributes
M 3x4x5x6x2 5.625 double
1 Kommentar
Olivier Roy
am 31 Okt. 2023
Kategorien
Mehr zu Logical finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!