On Mon, 4 Dec 2017, Sven Schreiber wrote:
Am 04.12.2017 um 20:31 schrieb Artur Tarassow:
> Dear all,
>
> is there a way to delete a matrix? The "delete" command does not work for
> matrices
This works for me:
matrix m = ones(2,1)
delete m
print m
Me too:
matrix M = mnormal(500,500)
eval tr(M)
delete M
What's the context in which "delete" is not working on a matrix?
Allin