uncomplicate

2025-01-28T12:52:57.016549Z

it does. try it.

Joe R. Smith 2025-01-28T16:42:19.076049Z

@blueberry it seems to just be adding all 3 vectors:

(axpy (dv 1.0 1.0) (dv 2.0 2.0) (dv 3.0 3.0))
=> #RealBlockVector[double, n:2, stride:1]
[   6.00    6.00 ]

Joe R. Smith 2025-01-28T16:43:13.547099Z

expected [5.00 5.00]

Joe R. Smith 2025-01-28T16:45:56.173959Z

oh nevermind, alpha is supposed to be a scalar.

2025-01-28T17:32:38.940239Z

it can also be a vector. you decide 🙂

Joe R. Smith 2025-01-28T02:38:49.676249Z

maybe a silly question, but why doesn't axpy in neanderthal have an alpha parameter?