I defined the following variable
julia> X = (1:10) * ones(1,10)
which defines a matrix with each row equal to the same number, and numbers in the column increasing from 1 to 10 by 1. I want to know which method Julia used for the function *. How can I ask Julia about this?
source
share