Al momento, stai seguendo questo contributo
- Vedrai gli aggiornamenti nel tuo feed del contenuto seguito
- Potresti ricevere delle email a seconda delle tue preferenze per le comunicazioni
"Whos" is a customized version of MATLAB's usual "whos" function.
The differences are,
(1) "Whos" will compute/display memory in kilobytes whereas "whos" displays in bytes.
(2) "Whos" will always display all array dimensions whereas "whos" will not display array dimensions for 4th and higher dimensional arrays.
EXAMPLE: Given the following arrays
A=rand(10,20,30,40);
B=rand(5,10,15,20,25,'single')*i;
using "whos" displays the following:
>> whos
Name Size Bytes Class Attributes
A 4-D 1920000 double
B 5-D 3000000 single complex
whereas Whos will display the following
>> Whos
Name Size Kilobytes Class Attributes
A 10x20x30x40 1875 double
B 5x10x15x20x25 2930 single complex
An unfortunate limitation is that Whos relies on EVALIN and so will not work correctly in a workspace context reached using DBUP and DBDOWN. I elaborate on this somewhat in this Newsgroup thread:
http://www.mathworks.com/matlabcentral/newsreader/view_thread/303357
Hopefully, TMW will provide a way around this eventually.
Cita come
Matt J (2026). Whos (https://it.mathworks.com/matlabcentral/fileexchange/30534-whos), MATLAB Central File Exchange. Recuperato .
Informazioni generali
- Versione 1.2.0.0 (2,83 KB)
Compatibilità della release di MATLAB
- Compatibile con qualsiasi release
Compatibilità della piattaforma
- Windows
- macOS
- Linux
