test coverage

This commit is contained in:
Will Charczuk 2017-04-17 17:05:55 -07:00
parent 8c4ccc3bb6
commit dc3663850f
3 changed files with 19 additions and 2 deletions

View file

@ -3,7 +3,6 @@ package matrix
import ( import (
"bytes" "bytes"
"errors" "errors"
"fmt"
"math" "math"
) )
@ -239,6 +238,7 @@ func (m *Matrix) L() *Matrix {
} }
// U returns the matrix with zeros above the diagonal. // U returns the matrix with zeros above the diagonal.
// Does not include the diagonal.
func (m *Matrix) U() *Matrix { func (m *Matrix) U() *Matrix {
m2 := New(m.rows, m.cols) m2 := New(m.rows, m.cols)
for row := 0; row < m.rows; row++ { for row := 0; row < m.rows; row++ {
@ -254,7 +254,7 @@ func (m *Matrix) String() string {
buffer := bytes.NewBuffer(nil) buffer := bytes.NewBuffer(nil)
for row := 0; row < m.rows; row++ { for row := 0; row < m.rows; row++ {
for col := 0; col < m.cols; col++ { for col := 0; col < m.cols; col++ {
buffer.WriteString(fmt.Sprintf("%f", m.Get(row, col))) buffer.WriteString(f64s(m.Get(row, col)))
buffer.WriteRune(' ') buffer.WriteRune(' ')
} }
buffer.WriteRune('\n') buffer.WriteRune('\n')

View file

@ -316,3 +316,15 @@ func TestMatrixU(t *testing.T) {
u := m.U() u := m.U()
assert.True(u.Equals(New(3, 3, 0, 0, 0, 4, 0, 0, 7, 8, 0))) assert.True(u.Equals(New(3, 3, 0, 0, 0, 4, 0, 0, 7, 8, 0)))
} }
func TestMatrixString(t *testing.T) {
assert := assert.New(t)
m := NewFromArrays([][]float64{
{1, 2, 3},
{4, 5, 6},
{7, 8, 9},
})
assert.Equal("1 2 3 \n4 5 6 \n7 8 9 \n", m.String())
}

View file

@ -2,6 +2,7 @@ package matrix
import ( import (
"math" "math"
"strconv"
) )
func minInt(values ...int) int { func minInt(values ...int) int {
@ -25,3 +26,7 @@ func maxInt(values ...int) int {
} }
return max return max
} }
func f64s(v float64) string {
return strconv.FormatFloat(v, 'f', -1, 64)
}