multiline arrays (copy to clipboard)

Messages in english

Modérateur : xcasadmin

compsystems
Messages : 558
Inscription : sam. févr. 04, 2017 11:34 pm
Localisation : Colombia
Contact :

multiline arrays (copy to clipboard)

Message par compsystems » ven. avr. 19, 2019 2:03 pm

Hello:
When entering an array for example [[9,8,7],[6,5,4]] >
[[9,8,7],
[6,5,4]], it is displayed in two-dimensional form, but when copying it, it is linearly encoded [[9,8,7],[6,5,4]]. The idea is that it is copied just like a table in multiple lines (double-click then copy).

online version
tbl9 := table( (0,0) = 10, (0,1) = 9, (1,0) = 8, (1,1) = 7, 5=6,"6"=5, p07=4 ) [enter] tbl9 := table( 5=6, p07=4, (0,0) = 10, (0,1) = 9, (1,0) = 8, (1,1) = 7, "6"=5 )

double-click then copy

table(
5 = 6,
p07 = 4,
(0,0) = 10,
(0,1) = 9,
(1,0) = 8,
(1,1) = 7,
"6" = 5
)
tbl9[(0,0)],tbl9[(0,1)],tbl9[(1,0)],tbl9[(1,1)],tbl9[5],tbl9["6"],tbl9[p07] [enter] 10,9,8,7,6,5,4


[[9,8,7],[6,5,4]] enter double-click then copy
[[9,8,7],
[6,5,4]]

Répondre