Opened 19 years ago

Last modified 18 years ago

#66 closed defect (fixed)

Get slice of matrix does not work

Reported by: davbr Owned by: davbr
Priority: critical Milestone:
Component: Version:
Keywords: Cc: davbr, Adrian Pop

Description


Change History (2)

comment:1 by davbr, 19 years ago

For example:

a := {{1,2},{3,4}}
a[2,:]

Should give the result:

{3,4}

but this does not work...

comment:2 by Peter Aronsson, 18 years ago

This works now. Output from session:

a:=[1,2;3,4]
{{1,2},{3,4}}
a[2,:]
{3,4}

Note: See TracTickets for help on using tickets.