|
|
last edited 8 years ago by test1 |
1 2 3 4 5 6 | ||
Editor: test1
Time: 2016/09/26 13:32:26 GMT+0 |
||
Note: |
added:
From test1 Mon Sep 26 13:32:26 +0000 2016
From: test1
Date: Mon, 26 Sep 2016 13:32:26 +0000
Subject:
Message-ID: <20160926133226+0000@axiom-wiki.newsynthesis.org>
Status: open => closed
Empty one dimensional arrays are printed but no empty two dimensional array in console.
(1) -> )set output algebra on
)set output tex off
empty()$Vector(INT)
(1) []
empty()$Matrix(INT)
(2) []
)set output algebra off
)set output tex on
empty()$Vector(INT)
(1) |
empty()$Matrix(INT)
(2) |
)se ou tex off
)se ou al on
(matrix [[1,2]])::OUTFORM pretend SEX
(5) (MATRIX () (ROW 1 2))
(empty()$Matrix INT)::OUTFORM pretend SEX
(6) (BRACKET (AGGLST))
matrix []
(7) matrix
could be equivalent to empty()$Matrix INT
. On the other hand, the interpreter has no way to determine the type of this matrix, so the error is probably OK.
matrix [[]]
(8) matrix NONE
does indeed not make any sense at all.
Status: open => closed