Why is the following not okay? s = [0.1 0.09; 0.09 0.5] z = chol(s) t = z[:,1]
This gives a dimension error. The following does work s = [0.1 0.09; 0.09 0.5] z = chol(s) y = convert(Array,z) t = z[:,1] Somehow it seems to me that the convert() should not be needed.
