I have forgotten
my Password

Or login with:

  • Facebookhttp://facebook.com/
  • Googlehttps://www.google.com/accounts/o8/id
  • Yahoohttps://me.yahoo.com
COST (GBP)
this unit 0.76
sub units 0.00
+
0
UnitsConvert

light

Measurement units, including imperial and SI units
Controller: will

Interface

C++

Light

 
doublelightdoublenumber
unitsfrom_unit
unitsto_unit )
Converts a numbers from one light unit to another.

Example 1

#include <iostream>
#include <codecogs/units/convert/light.h>
 
using namespace Units::Convert;
int main()
{
  std::cout << "light(10.2,unit_m, unit_ft)=" << light(10.2,unit_m, unit_ft);
 
  return 0;
}
Output:
light(123, unit_W, unit_HP)= 0.013678405

Parameters

numberthe value in from_unit 's to convert
from_unitan enumerated value of the initial light type
to_unitan emuerated value of the output light type

Returns

the value in the converted unit.
Source Code

Source code is available when you buy a Commercial licence.

Not a member, then Register with CodeCogs. Already a Member, then Login.


Other Documentation

The standard measurement units are:

Unit names Alternate names / spellings Abbreviation Enumeration Code Conversion Rate (relative to first unit)
Light
Lux Lux lx unit_lx 1
Flames Flame fl unit_fl 0.02322576
Footcandles Feetcandles fc unit_fc 0.09290304
Meter-candles Metre-candles mc unit_mc 1
Source Code

Source code is available when you buy a Commercial licence.

Not a member, then Register with CodeCogs. Already a Member, then Login.