摘要: https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Guide/Regular_Expressions https://blog.csdn.net/csm0912/article/details/81206848 (?:x) 匹配 'x' 阅读全文
posted @ 2021-09-08 15:21 该显示昵称已被使用了 阅读(51) 评论(0) 推荐(0)
摘要: 毫瓦->dbm 0dBm=1mW dbm = 10*math.log(毫瓦,10) # python 实现 dbm = 10*math.log(1,10) dbm->瓦 W=(power(10,dBm/10))/1000 # python 实现 w = math.pow(10,dBm/10)/100 阅读全文
posted @ 2021-09-08 11:06 该显示昵称已被使用了 阅读(486) 评论(0) 推荐(0)