package
Version:
v0.0.0-...-6781cc5
Opens a new window with list of versions in this module.
Published: Mar 1, 2018
License: LGPL-3.0
Opens a new window with license information.
Imports: 0
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
AddScaled performs dst = dst + alpha * s.
It panics if the lengths of dst and s are not equal.
AxpyUnitaryTo is
for i, v := range x {
dst[i] = alpha*v + y[i]
}
Max is
for i, v := range s {
if v > dst[i] {
dst[i] = v
}
}
Min is
for i, v := range s {
if v < dst[i] {
dst[i] = v
}
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.