clone
clone(x)
Clone a variable. Creates a copy of primitive variables,and a deep copy of matrices
Try it yourself:
$1 | clone(3.5)
| |
$2 | clone(2 - 4i)
| |
$3 | clone(45 deg)
| |
$4 | clone([1, 2; 3, 4])
| |
$5 | clone("hello world")
|