Conversies

Temperatuur
Discription
Converteert temperatuursschalen:
°C (Celcius), °D (Delisle), °F (Fahrenheit), K (Kelvin),
N (Newton), °Ra (Rankine), °Re (Réaumur) of °Rø (Rømer).
Syntax
var a = function(x);
where function(x) stands for c2d(x), c2f(x), c2k(x), …
below in table all possible functions:
---- | c2d(x) | c2f(x) | c2k(x) | c2n(x) | c2ra(x) | c2re(x) | c2ro(x) |
d2c(x) | ---- | d2f(x) | d2k(x) | d2n(x) | d2ra(x) | d2re(x) | d2ro(x) |
f2c(x) | f2d(x) | ---- | f2k(x) | f2n(x) | f2ra(x) | f2re(x) | f2ro(x) |
k2c(x) | k2d(x) | k2f(x) | ---- | k2n(x) | k2ra(x) | k2re(x) | k2ro(x) |
n2c(x) | n2d(x) | n2f(x) | n2k(x) | ---- | n2ra(x) | n2re(x) | n2ro(x) |
ra2c(x) | ra2d(x) | ra2f(x) | ra2k(x) | ra2n(x) | ---- | ra2re(x) | ra2ro(x) |
re2c(x) | re2d(x) | re2f(x) | re2k(x) | re2n(x) | re2ra(x) | ---- | re2ro(x) |
ro2c(x) | ro2d(x) | ro2f(x) | ro2k(x) | ro2n(x) | ro2ra(x) | ro2re(x) | ---- |
Arguments
x: irrationaal getal of een functie.
Return
a: irrationaal getal.
Examples
var a = c2f(10.5); // a = 50.9
Remarks
Punt als decimaal teken.
Calculate
Related items
Nihil.
Javacript-box: conversies - temperatuur