No BSD License  

Highlights from
aide mémoire Matlab (seconde édition)

from aide mémoire Matlab (seconde édition) by Jean-Thierry
les m-fichiers de l'aide mémore Matlab seconde édition

ex_chol.m
a = [ 1 2 3;  0 -4 5;  0 0 6]
x = a'*a
r = chol(x)
rr = r'*r
a = [ 1 2 3;  0 -4 5;  0 0 0]
x = a'*a
[r p] = chol(x)
rr = r'*r

Contact us at files@mathworks.com