File: precision_test.go

package info (click to toggle)
golang-gonum-v1-plot 0.7.0-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 13,980 kB
  • sloc: sh: 81; makefile: 13
file content (46 lines) | stat: -rw-r--r-- 859 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// Copyright ©2017 The Gonum Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

package plotter_test

import (
	"log"
	"testing"

	"gonum.org/v1/plot"
	"gonum.org/v1/plot/cmpimg"
	"gonum.org/v1/plot/plotter"
)

func TestFloatPrecision(t *testing.T) {
	const fname = "precision.png"

	cmpimg.CheckPlot(func() {
		p, err := plot.New()
		if err != nil {
			log.Fatal(err)
		}

		p.X.Label.Text = "x"
		p.Y.Label.Text = "y"

		var data = make(plotter.XYs, 10)
		for i := range data {
			data[i].X = float64(i)
			data[i].Y = 1300
		}

		lines, points, err := plotter.NewLinePoints(data)
		if err != nil {
			log.Fatal(err)
		}
		p.Add(points, lines)
		p.Add(plotter.NewGrid())

		err = p.Save(300, 300, "testdata/"+fname)
		if err != nil {
			log.Fatal(err)
		}
	}, t, fname)
}