--
ok, i found norm in linalg_dense, but no function dot there nor a function which uses dot. in blas.jl, there's only the normal scal! and scal!:
function scal!(n::Integer, DA::$elty, DX::Union(Ptr{$elty},Array{$elty}), incx::Integer)I'm searching for a functions scal(3.0, myVector), or myVector *= 3.0 and dot(myVecA, myVecB) or myVecA * myVecB which uses BLAS.
--