Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- type Vector []float64
- func NewVector(args ...float64) Vector {
- return args
- }
- func WithSize(s int) Vector {
- v := make([]float64, s)
- return v
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement