In [1]:
import sys
sys.path.append('../')
sys.path.append('../../')
from errorpro.interactive import *
init(locals())

In [8]:
%%eq
a = 1 <1>
b = 0.2 <2>
c = 3 <3>
{d <0.1>
 1
 2
 3
}

In [10]:
z = concat(a,b,d, name="test", longname="concattized")
z


Out[10]:
Displaying: $test$

concattized $test \; \mathrm{\left[1\right]}$
$1.0 \phantom{0} \pm 1.0 \phantom{0}$
$0.2 \phantom{0} \pm 2.0 \phantom{0}$
$1.00 \pm 0.10$
$2.00 \pm 0.10$
$3.00 \pm 0.10$


In [11]:
slice(z,1)


Out[11]:
Displaying: $NoName_{5}$

$NoName_{5} \; \mathrm{\left[1\right]}$
$0.2 \phantom{0} \pm 2.0 \phantom{0}$
$1.00 \pm 0.10$
$2.00 \pm 0.10$
$3.00 \pm 0.10$


In [ ]: