go-chart/sequence/linear.go

59 lines
1.5 KiB
Go
Raw Normal View History

2017-04-30 06:12:39 +02:00
package sequence
2017-04-30 09:39:38 +02:00
// Values returns the array values of a linear sequence with a given start, end and optional step.
func Values(start, end float64) []float64 {
2017-05-02 07:33:49 +02:00
return Seq{NewLinear().WithStart(start).WithEnd(end).WithStep(1.0)}.Array()
2017-04-30 09:39:38 +02:00
}
// ValuesWithStep returns the array values of a linear sequence with a given start, end and optional step.
func ValuesWithStep(start, end, step float64) []float64 {
2017-05-02 07:33:49 +02:00
return Seq{NewLinear().WithStart(start).WithEnd(end).WithStep(step)}.Array()
2017-04-30 09:39:38 +02:00
}
2017-04-30 06:12:39 +02:00
// NewLinear returns a new linear generator.
func NewLinear() *Linear {
return &Linear{}
}
// Linear is a stepwise generator.
type Linear struct {
2017-05-02 07:33:49 +02:00
start float64
end float64
step float64
2017-04-30 06:12:39 +02:00
}
// Len returns the number of elements in the sequence.
func (lg Linear) Len() int {
2017-05-02 07:33:49 +02:00
if lg.start < lg.end {
return int((lg.end-lg.start)/lg.step) + 1
}
return int((lg.start-lg.end)/lg.step) + 1
2017-04-30 06:12:39 +02:00
}
// GetValue returns the value at a given index.
func (lg Linear) GetValue(index int) float64 {
2017-05-02 07:51:23 +02:00
fi := float64(index)
2017-05-02 07:33:49 +02:00
if lg.start < lg.end {
2017-05-02 07:51:23 +02:00
return lg.start + (fi * lg.step)
2017-05-02 07:33:49 +02:00
}
2017-05-02 07:51:23 +02:00
return lg.start - (fi * lg.step)
2017-04-30 06:12:39 +02:00
}
2017-05-02 07:33:49 +02:00
// WithStart sets the start and returns the linear generator.
func (lg *Linear) WithStart(start float64) *Linear {
lg.start = start
2017-04-30 06:12:39 +02:00
return lg
}
2017-05-02 07:33:49 +02:00
// WithEnd sets the end and returns the linear generator.
func (lg *Linear) WithEnd(end float64) *Linear {
lg.end = end
2017-04-30 06:12:39 +02:00
return lg
}
// WithStep sets the step and returns the linear generator.
func (lg *Linear) WithStep(step float64) *Linear {
lg.step = step
return lg
}