-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgoNewton.go
275 lines (252 loc) · 7.47 KB
/
goNewton.go
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
// Package goNewton package implements an API wrapper for newton API (https://github.com/aunyks/newton-api)
package goNewton
import (
"encoding/json"
"fmt"
"net/http"
)
// The Newton struct is an empty interface, it has all functionalities of the Newton API
type Newton struct {
}
// Response struct to destructure the JSON response into a Go type
type response struct {
Operation string `json:"operation"`
Expression string `json:"expression"`
Result string `json:"result"`
}
// The url endpoint for the API
const (
url = "https://newton.now.sh/%s/%s" //Format of URL "https://newton.now.sh/:operation/:expression"
)
// Simplify returns the simplified expression as a string
func (n *Newton) Simplify(exp string) (string, error) {
const endPoint = "simplify"
call := fmt.Sprintf(url, endPoint, exp)
res, err := http.Get(call)
if err != nil {
return "", err
}
var data response
json.NewDecoder(res.Body).Decode(&data)
return data.Result, nil
}
// Factor returns a string with factors of the expression.
// Returns the expression if factorisation is not possible.
func (n *Newton) Factor(exp string) (string, error) {
const endPoint = "factor"
call := fmt.Sprintf(url, endPoint, exp)
res, err := http.Get(call)
if err != nil {
return "", err
}
var data response
json.NewDecoder(res.Body).Decode(&data)
return data.Result, nil
}
// Derive return a string with the derivation of the expression
// Returns the expression if derivation is not possible.
func (n *Newton) Derive(exp string) (string, error) {
const endPoint = "derive"
call := fmt.Sprintf(url, endPoint, exp)
res, err := http.Get(call)
if err != nil {
return "", err
}
var data response
json.NewDecoder(res.Body).Decode(&data)
return data.Result, nil
}
// Integrate return a string with the integration on the expression
// Returns the expression if integration is not possible.
func (n *Newton) Integrate(exp string) (string, error) {
const endPoint = "integrate"
call := fmt.Sprintf(url, endPoint, exp)
res, err := http.Get(call)
if err != nil {
return "", err
}
var data response
json.NewDecoder(res.Body).Decode(&data)
return data.Result, nil
}
// Zeros return a string with the number of zeros in the expression
func (n *Newton) Zeros(exp string) (string, error) {
const endPoint = "zeros"
call := fmt.Sprintf(url, endPoint, exp)
res, err := http.Get(call)
if err != nil {
return "", err
}
var data response
json.NewDecoder(res.Body).Decode(&data)
return data.Result, nil
}
// Tangent returns a string with the tangential equation to the expression
func (n *Newton) Tangent(expr string, num int) (string, error) {
const endPoint = "tangent"
exp := fmt.Sprintf("%d|%s", num, expr)
call := fmt.Sprintf(url, endPoint, exp)
res, err := http.Get(call)
if err != nil {
return "", err
}
var data response
json.NewDecoder(res.Body).Decode(&data)
return data.Result, nil
}
// TangentStr returns a string with the tangential equation to the expression
// Uses the Newton API string format "number|expression"
// The '|' is used to separate the number and expression
func (n *Newton) TangentStr(exp string) (string, error) {
const endPoint = "tangent"
call := fmt.Sprintf(url, endPoint, exp)
res, err := http.Get(call)
if err != nil {
return "", err
}
var data response
json.NewDecoder(res.Body).Decode(&data)
return data.Result, nil
}
// Area returns a string with the area under the curve of the given expression
// The expression of the curve and the starting and ending point are separated
func (n *Newton) Area(expr string, start int, end int) (string, error) {
const endPoint = "area"
exp := fmt.Sprintf("%d:%d|%s", start, end, expr)
call := fmt.Sprintf(url, endPoint, exp)
res, err := http.Get(call)
if err != nil {
return "", err
}
var data response
json.NewDecoder(res.Body).Decode(&data)
return data.Result, nil
}
// AreaStr returns a string with the area under the curve of the given expression
// Uses the Newton API string format "start:end|expression"
// The starting and ending are given as numbers separated by a ':' and then the expression after a '|'
func (n *Newton) AreaStr(exp string) (string, error) {
const endPoint = "area"
call := fmt.Sprintf(url, endPoint, exp)
res, err := http.Get(call)
if err != nil {
return "", err
}
var data response
json.NewDecoder(res.Body).Decode(&data)
return data.Result, nil
}
// Cos returns a strign of the cosine of the given expresion
func (n *Newton) Cos(exp string) (string, error) {
const endPoint = "cos"
call := fmt.Sprintf(url, endPoint, exp)
res, err := http.Get(call)
if err != nil {
return "", err
}
var data response
json.NewDecoder(res.Body).Decode(&data)
return data.Result, nil
}
// Sin returns a string of the sine of the given expression
func (n *Newton) Sin(exp string) (string, error) {
const endPoint = "sin"
call := fmt.Sprintf(url, endPoint, exp)
res, err := http.Get(call)
if err != nil {
return "", err
}
var data response
json.NewDecoder(res.Body).Decode(&data)
return data.Result, nil
}
// Tan returns a string of the tan(gent) of the given expression
func (n *Newton) Tan(exp string) (string, error) {
const endPoint = "tan"
call := fmt.Sprintf(url, endPoint, exp)
res, err := http.Get(call)
if err != nil {
return "", err
}
var data response
json.NewDecoder(res.Body).Decode(&data)
return data.Result, nil
}
// CosInverse returns a string of the cos inverse of the given expression
func (n *Newton) CosInverse(exp string) (string, error) {
const endPoint = "arccos"
call := fmt.Sprintf(url, endPoint, exp)
res, err := http.Get(call)
if err != nil {
return "", err
}
var data response
json.NewDecoder(res.Body).Decode(&data)
return data.Result, nil
}
// SinInverse return a string of the sine inverse of the given expression
func (n *Newton) SinInverse(exp string) (string, error) {
const endPoint = "arcsin"
call := fmt.Sprintf(url, endPoint, exp)
res, err := http.Get(call)
if err != nil {
return "", err
}
var data response
json.NewDecoder(res.Body).Decode(&data)
return data.Result, nil
}
// TanInverse returns a string of the tan inverse of te given expression
func (n *Newton) TanInverse(exp string) (string, error) {
const endPoint = "arctan"
call := fmt.Sprintf(url, endPoint, exp)
res, err := http.Get(call)
if err != nil {
return "", err
}
var data response
json.NewDecoder(res.Body).Decode(&data)
return data.Result, nil
}
// Absolute return a string of the absolute value of the given expression
func (n *Newton) Absolute(exp string) (string, error) {
const endPoint = "abs"
call := fmt.Sprintf(url, endPoint, exp)
res, err := http.Get(call)
if err != nil {
return "", err
}
var data response
json.NewDecoder(res.Body).Decode(&data)
return data.Result, nil
}
// Log return a string with the log of a number with base, both as parameters
func (n *Newton) Log(num int, base int) (string, error) {
const endPoint = "log"
exp := fmt.Sprintf("%d|%d", base, num)
call := fmt.Sprintf(url, endPoint, exp)
res, err := http.Get(call)
if err != nil {
return "", err
}
var data response
json.NewDecoder(res.Body).Decode(&data)
return data.Result, nil
}
// LogStr return a string of the log of a number
// Using the Newton API string format , "base|number"
func (n *Newton) LogStr(exp string) (string, error) {
const endPoint = "log"
call := fmt.Sprintf(url, endPoint, exp)
res, err := http.Get(call)
if err != nil {
return "", err
}
var data response
json.NewDecoder(res.Body).Decode(&data)
return data.Result, nil
}
// New return a new Newton object
func New() *Newton {
return new(Newton)
}