K1KAA

Math Applications & Function Generators


Most of the stuff on this page runs in JavaScript. These are just some applications I have either written or found useful at some point (if they aren't mine, the credits are in the script...do a "view source"). You can find more JavaScript math generators at JavaScript.internet.com. What mathematical functions are supported by JavaScript? Answer below.


Slope Functions

X1:
Y1:
X2:
Y2:
Formula:
Slope:
Y-Intercept:
Parallel Line:
Perpendicular Line:


Lat-Lon Converter

- Useful for finding out your actual latitude/longitude. Good for cluster users who want to set their location in AR-C's format.

Degrees Decimal


Latitude : North South
Longitude: East West

Degrees, Minutes, & Seconds


Latitude:
Degrees: Minutes: Seconds:
North South
Longitude:
Degrees: Minutes: Seconds:
East West


Velocity Equivalents

- This one can also be useful when working with velocity factors of coax or with [long] antennas.

Number:
Fm: cm/sec
m/sec
m/min
km/hr
ft/sec
ft/min
mi/hr
Knots
To: cm/sec
m/sec
m/min
km/hr
ft/sec
ft/min
mi/hr
Knots


Bandwidth Converter


Length Converter

From To
centimeters = 1 centimeters
Enter
1


JavaScript "math" object methods

Math.abs(a) | the absolute value of a
Math.acos(a) | arc cosine of a
Math.asin(a) | arc sine of a
Math.atan(a) | arc tangent of a
Math.atan2(a,b) | arc tangent of a/b
Math.ceil(a) | integer closest to a and not less than a
Math.cos(a) | cosine of a
Math.exp(a) | exponent of a
Math.floor(a) | integer closest to and not greater than a
Math.log(a) | log of a base e
Math.max(a,b) | the maximum of a and b
Math.min(a,b) | the minimum of a and b
Math.pow(a,b) | a to the power b
Math.random() | pseudorandom number in the range 0 to 1
Math.round(a) | integer closest to a
Math.sin(a) | sine of a
Math.sqrt(a) | square root of a
Math.tan(a) | tangent of a


Return Home