Ok, I was tired when I wrote the above :-/ This works:
rand(10,30).*rand(10,30)
rand(10,1).*rand(10,30)
as one expects,
and this one works too
sprand(10,30,0.1).*sprand(10,30,0.1)
but this one don't:
sprand(10,1,0.1).*sprand(10,30,0.1)
ErrorException("Incompatible sizes")
Is this just not implemented yet or am I doing it wrong?
