summaryrefslogtreecommitdiff
path: root/Build/source/utils/asymptote/doc/leastsquares.asy
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/utils/asymptote/doc/leastsquares.asy')
-rw-r--r--Build/source/utils/asymptote/doc/leastsquares.asy2
1 files changed, 1 insertions, 1 deletions
diff --git a/Build/source/utils/asymptote/doc/leastsquares.asy b/Build/source/utils/asymptote/doc/leastsquares.asy
index cb2b8f3a42b..37477d58858 100644
--- a/Build/source/utils/asymptote/doc/leastsquares.asy
+++ b/Build/source/utils/asymptote/doc/leastsquares.asy
@@ -5,7 +5,7 @@ import stats;
file fin=input("leastsquares.dat").line();
-real[][] a=fin.dimension(0,0);
+real[][] a=fin;
a=transpose(a);
real[] t=a[0], rho=a[1];