As it is written in the title, how can I create an instance of a matrix with complex128? What is the complex equivalent of the following?
matrix := mat.NewDense(2, 2, []float64{0, 0, 0, 3})
how can I write something like this?
Matrix := mat.NewDense(2, 2, []complex128{0, 0, 0, 3i})