paketecuento - 2018-06-21

I solved it just creating a copy of times.m and adding some code. Just replace in case -1 switch:

m.multivector{I} = -p;

by

if col == row
    m.multivector{I} = p;
else
    m.multivector{I} = -p;
end

and

m.multivector{I} = m.multivector{I} - p;

by

if col == row
    m.multivector{I} = m.multivector{I} + p;
else
    m.multivector{I} = m.multivector{I} - p;
end