Berechnen Sie mW <-> dBm in Python

Überblick

Berechnungsformel, die mW <-> dBm mit Python konvertieren kann

Vorbereitungen

Es wird nur Mathematik verwendet. Wenn also Python enthalten ist, gibt es nichts Besonderes

Quelle


#!/usr/bin/env python
#-*- coding: utf-8 -*-
import math

#mW ->In dBm umrechnen
def mw_to_dbm(value):
    return 10 * math.log10(value)

#dBm ->In mW konvertieren
def  dbm_to_mw(value):
    return math.pow(10, value/10)


# test_code
test_mw = 50 #mw
print str(mw_to_dbm(test_mw)) # => 16.9897000434


test_dbm = 16.9897000434 #mw
print str(dbm_to_mw(test_dbm)) # => 50.0000000005


Recommended Posts

Berechnen Sie mW <-> dBm in Python
Berechnen Sie den Verlust der freien Speicherplatzausbreitung in Python
Versuchen Sie, Trace in Python zu berechnen
Berechnen Sie den Vormonat in Python
Quadtree in Python --2
Python in der Optimierung
CURL in Python
Metaprogrammierung mit Python
Python 3.3 mit Anaconda
Geokodierung in Python
SendKeys in Python
Metaanalyse in Python
Unittest in Python
Epoche in Python
Zwietracht in Python
Deutsch in Python
DCI in Python
Quicksort in Python
nCr in Python
N-Gramm in Python
Programmieren mit Python
Plink in Python
Konstante in Python
FizzBuzz in Python
SQLite in Python
Schritt AIC in Python
LINE-Bot [0] in Python
CSV in Python
Reverse Assembler mit Python
Reflexion in Python
Konstante in Python
nCr in Python.
Format in Python
Scons in Python 3
Puyopuyo in Python
Python in Virtualenv
PPAP in Python
Quad-Tree in Python
Reflexion in Python
Chemie mit Python
Hashbar in Python
DirectLiNGAM in Python
LiNGAM in Python
In Python reduzieren
In Python flach drücken
Berechnen wir das statistische Problem mit Python
Versuchen Sie, RPN mit Python zu berechnen (für Anfänger)
Sortierte Liste in Python
Täglicher AtCoder # 36 mit Python
Clustertext in Python
AtCoder # 2 jeden Tag mit Python
Täglicher AtCoder # 32 in Python
Täglicher AtCoder # 6 in Python
Täglicher AtCoder # 18 in Python
Bearbeiten Sie Schriftarten in Python
Singleton-Muster in Python
Dateioperationen in Python
Lesen Sie DXF mit Python