-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelpers.ts
31 lines (28 loc) · 813 Bytes
/
helpers.ts
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
import type { derivableFunction, derivableFunction2D} from './index'
/**
@description finds slope between two points
@param x1 first x-val
@param y1 first y-val
@param x2 second x-val
@param y2 second y-val
*/
export function slope(x1:number,y1:number,x2:number,y2:number){
return((y1-y2)/(x1-x2));
}
export function createDerivableFunction(f:derivableFunction|number):derivableFunction{
if(typeof f == 'number'){
return (x:number)=>f
}else if(typeof f == 'function'){
return f
}
}
export function createDerivableFunction2D(f:derivableFunction2D|number):derivableFunction2D{
if(typeof f == 'number'){
return (x,y)=>f
}else if(typeof f == 'function'){
return f
}
}
export function checkAccuracy(acc:number){
if(acc === 0) throw new Error("accuracy cannot equal zero")
}