m3_lightmeter/lib/utils/log_2.dart
2022-12-04 22:00:43 +03:00

3 lines
63 B
Dart

import 'dart:math';
double log2(double x) => log(x) / log(2);