MATLAB: How programmatically know if an Update is installed for a particular matlab release

releaseupdate

Hello,
MathWorks proposes some Updates for a given release.
For instance, (at this time writing) there are 4 proposed Updates for R2018b; and 2 ones for R2019a.
but my question is: does a function such ver or version would explicitely indicate which Update if installed (if any) ?
Regards
Pascal

Best Answer

Yes. See the output of version:
9.6.0.1114505 (R2019a) Update 2
With
ver('Matlab')
you get the version number only. But with
ver
the output of version is displayed.
Related Question