本文整理匯總了Golang中util/vec.Vectorer.GetAt方法的典型用法代碼示例。如果您正苦於以下問題:Golang Vectorer.GetAt方法的具體用法?Golang Vectorer.GetAt怎麽用?Golang Vectorer.GetAt使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類util/vec.Vectorer
的用法示例。
在下文中一共展示了Vectorer.GetAt方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: SolveUx
// Solve Ux = y, replace b with solution
// column oriented backward substitution
func (U mesh) SolveUx(y vec.Vectorer) {
n := U.c
for j := n - 1; j >= 1; j-- {
y.SetAt(j, y.GetAt(j)/U.GetAtNode(j, j))
for k := 0; k < j; k++ {
y.SetAt(k, y.GetAt(k)-y.GetAt(j)*U.GetAtNode(k, j))
}
}
y.SetAt(0, y.GetAt(0)/U.GetAtNode(0, 0))
}
示例2: SolveLy
// Solve Ly = b for y, replace b with solution
// column oriented forward substitution
func (L mesh) SolveLy(b vec.Vectorer) {
n := L.c
for j := 0; j < n-1; j++ {
b.SetAt(j, b.GetAt(j)/L.GetAtNode(j, j))
for k := j + 1; k < n; k++ {
b.SetAt(k, b.GetAt(k)-b.GetAt(j)*L.GetAtNode(k, j))
}
}
b.SetAt(n-1, b.GetAt(n-1)/L.GetAtNode(n-1, n-1))
}
示例3: SetDiag
// SetDiag puts the diagonal, d into the mesh
// m must be a square matrix
func (m *mesh) SetDiag(d vec.Vectorer) {
for e := range d.Slice() {
m.SetAtNode(d.GetAt(e), e, e)
}
}