/usr/share/openturns/validation/ValidCovarianceMatrixLapack.sce is in openturns-validation 1.5-7build2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 | clear all
matrix1=[1,0.5;0.5,1]
pt = [5;0]
result = matrix1 \ pt
det(matrix1)
spec(matrix1)
chol(matrix1)
|