And now they have this additional detail. Pretty sweet.
By
Michael Katz
Mike is a developer on the MATLAB Mobile team. When not describing himself in the third person, biking, homebrewing, or rooting for the home team, he's busy trying to make the world a better place for programming.
Very interesting! Unfortunately I am only on 2007b. However I would be interested in knowing what sort of homebrewing you do… !
with R2011a Pre-release you can even merge the MAT-files … again a good reason to upgrade ;)
Aurélien
@Aurelien,
Hey! No stealing the good stuff from the Big Unveil.
@Jim,
Wow 7b, that feels like ancient software these days. It’s amazing how each of these little 6-month features add up over a few years. As for the homebrewing, we just finished the last of a holiday porter. A friend gave me about a pound of fresh hops from his garden, so I’m thinking of some kind of IPA for the spring-time.
@Jim
WHOS -FILE FILENAME provides all information needed on the file contents.
There are several options to compare the outputs of WHOS.
1. Search the FEX
2. Use the half-documented function VISDFF
e.g.
diary(‘f1.txt’)
whos …
diary off
diary(‘f2.txt’)
whos …
diary off
visdiff( ‘f1.txt’, ‘f2.txt’ )
or
s1 = whos( …
diary(‘f1′)
disp(s1)
diary off
/ per
@Jim
In addition see STRUCTCOMPVIS by Scott Hirsch in the FEX. The outline above is based on that contribution. (I missed it in my previous search.)
/ per
You can also use my ObjDiff utility in FEX: http://www.mathworks.com/matlabcentral/fileexchange/14395-objdiff-generic-object-comparator
objDiff Compares objects of many different types including Java, Matlab, HG handles, structs, cells & arrays
- Yair