summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/asymptote/examples/secondaryaxis.asy
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/doc/asymptote/examples/secondaryaxis.asy')
-rw-r--r--Master/texmf-dist/doc/asymptote/examples/secondaryaxis.asy2
1 files changed, 1 insertions, 1 deletions
diff --git a/Master/texmf-dist/doc/asymptote/examples/secondaryaxis.asy b/Master/texmf-dist/doc/asymptote/examples/secondaryaxis.asy
index 39f802f935d..27b89b9c384 100644
--- a/Master/texmf-dist/doc/asymptote/examples/secondaryaxis.asy
+++ b/Master/texmf-dist/doc/asymptote/examples/secondaryaxis.asy
@@ -8,7 +8,7 @@ file in=input(data).line().csv();
string[] titlelabel=in;
string[] columnlabel=in;
-real[][] a=in.dimension(0,0);
+real[][] a=in;
a=transpose(a);
real[] t=a[0], susceptible=a[1], infectious=a[2], dead=a[3], larvae=a[4];
real[] susceptibleM=a[5], exposed=a[6],infectiousM=a[7];