I have defined the following variable
julia> X = (1:10) * ones(1,10)
which defines a matrix with each row equals to the same number and the numbers in the column increasing from 1 to 10 by 1. I want to know which method used Julia for the function *
. How can I ask that to Julia?
*(UnitRange{Int64}, Array{Float64,2})
– Matrilineage@code_warntype (1:10) * ones(1,10)
might tell you what you need to know. As near as I can tell (and I emphasize this is not something I know much about), ultimately*
appears to be callingBase.LinAlg.generic_matmatmul!
on two inputArray{Float64, 2}
. Hopefully someone a bit more knowledgeable can chip in. – Proclivity