EMC中的单位 由于在EMC中,测试的频率和幅度范围都非常宽,为了便于表达、叙述和运算,场采用对数单元分贝(dB),而不是线性坐标。通过对数坐标,压缩数值,以表示更大的范围。并且,对数运算把复杂的乘除,幂方变为简单的加减,便于计算。 分贝 分贝(dB)的定义: \[ dB=10\lg \frac{\ ...
分类:
其他好文 时间:
2021-04-07 10:58:18
阅读次数:
0
·html hyper text markup language 超文本标记语言,一种描述性语言。 //结构 ·css cascading style sheet 层叠样式表,控制网页外观。 //外观 ·javascript JS,嵌入到HTML页面中的脚本语言,由浏览器便解释边执行。//行为 ·其 ...
分类:
其他好文 时间:
2021-04-07 10:42:19
阅读次数:
0
let Tools = { contentType: { '.323': 'text/h323', '.3gp': 'video/3gpp', '.aab': 'application/x-authoware-bin', '.aam': 'application/x-authoware-map', ...
分类:
Web程序 时间:
2021-04-07 10:42:03
阅读次数:
0
通过前面的章节我们知道Springboot会调用ServletWebServerApplicationContext#getWebServer方法启动tomcat 最终会调用TomcatWebServer#initialize这个方法,然后再调用tomcat#start方法,然后调用Lifecycl ...
分类:
数据库 时间:
2021-04-06 15:11:52
阅读次数:
0
一、词频统计: 1.读文本文件生成RDD lines 2.将一行一行的文本分割成单词 words flatmap() lines=sc.textFile("file:///usr/local/spark/mycode/wordcount/word.txt") words = lines.flatMa ...
分类:
其他好文 时间:
2021-04-06 15:08:22
阅读次数:
0
<?xml version="1.0" encoding="UTF-8"?><beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ...
分类:
编程语言 时间:
2021-04-06 15:03:33
阅读次数:
0
2.1 序列化概述 1)什么是序列化 序列化就是把内存中的对象,转换成字节序列(或其他数据传输协议)以便于存储到磁盘(持久化)和网络传输。 反序列化就是将收到字节序列(或其他数据传输协议)或者是磁盘的持久化数据,转换成内存中的对象。 2)为什么要序列化 一般来说,“活的”对象只生存在内存里,关机断电 ...
分类:
其他好文 时间:
2021-04-06 14:52:31
阅读次数:
0
使用 jsonify 时,返回的 http response 的 Content-Type 是:Content-Type: application/json 使用json.dumps时,Content-Type则是:Content-Type: text/html; charset=utf-8 其他基 ...
分类:
Web程序 时间:
2021-04-06 14:40:10
阅读次数:
0
先创建后台实体类 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 using System. ...
### [RFC4511 Result Code](https://datatracker.ietf.org/doc/rfc4511/?include_text=1) ``` success (0), operationsError (1), protocolError (2), timeLimit ...
分类:
其他好文 时间:
2021-04-06 14:19:59
阅读次数:
0