size(a)
(1, 1)
size(b)
(1, 2)
Clearly the objects are compatible for matrix-matrix multiplication (by size), however the types say they are not compatible.
EDIT: Sorry.
a = transpose([-6.5])
b = [0, .95]'
size(a)
(1, 1)
size(b)
(1, 2)
size(a)
(1, 1)
size(b)
(1, 2)
Clearly the objects are compatible for matrix-matrix multiplication (by size), however the types say they are not compatible.
EDIT: Sorry.
a = transpose([-6.5])
b = [0, .95]'
size(a)
(1, 1)
size(b)
(1, 2)