虫虫首页| 资源下载| 资源专辑| 精品软件
登录| 注册

ms

  • CCS样式选择符设计

    CCS样式选择符,初学者,设计,DW,网页制作,大一作业 部分预览: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>CSS样式选择符</title> <style type="text/css">  body  { background-image:url(images/%E8%83%8C%E6%99%AF%E5%9B%BE%E7%89%87.jpg); background-repeat:repeat;  }    .class1  { text-align:center; font-weight:bolder;  }  .class2  { font-family:"仿宋"; text-indent:8em;  }    .class3  { font-size:18px; font-family:"宋体"; text-indent:4em;  }    #id1  { font-family:Zombie, Verdana, "Comic Sans ms"; font-style:oblique; font-size:64px;  }    #id2  { font-family:"黑体"; font-size:36px;  }  #id3  { color:#F69; font-weight:bolder; text-shadow:#FCC;  } </style> </head> <body>  <table width="780" height="1555" border="0" cellspacing="0" align="center" bgcolor="#FFFFFF">   <tr height="30">    <td align="center"><img src="images/顶部图片.jpg" /></td>   </tr>

    标签: CCS 网页设计

    上传时间: 2017-12-07

    上传用户:圈圈Ace

  • 一级ms Office学习资料包

    帮助有效的解决一级考试的资料复习题,下载后安装,还有pdf文档帮助学习选择题这类的

    标签: Office

    上传时间: 2017-12-21

    上传用户:纯虚函数

  • 基于频率插值的4.0kbps 语音编码器的性能和设计(英文)

    The 4.0 kbit/s speech codec described in this paper is based on a Frequency Domain Interpolative (FDI) coding technique, which belongs to the class of prototype waveform Interpolation (PWI) coding techniques. The codec also has an integrated voice activity detector (VAD) and a noise reduction capability. The input signal is subjected to LPC analysis and the prediction residual is separated into a slowly evolving waveform (SEW) and a rapidly evolving waveform (REW) components. The SEW magnitude component is quantized using a hierarchical predictive vector quantization approach. The REW magnitude is quantized using a gain and a sub-band based shape. SEW and REW phases are derived at the decoder using a phase model, based on a transmitted measure of voice periodicity. The spectral (LSP) parameters are quantized using a combination of scalar and vector quantizers. The 4.0 kbits/s coder has an algorithmic delay of 60 ms and an estimated floating point complexity of 21.5 MIPS. The performance of this coder has been evaluated using in-house MOS tests under various conditions such as background noise. channel errors, self-tandem. and DTX mode of operation, and has been shown to be statistically equivalent to ITU-T (3.729 8 kbps codec across all conditions tested.

    标签: frequency-domain interpolation performance Design kbit_s speech coder based and of

    上传时间: 2018-04-08

    上传用户:kilohorse

  • css美化有序列表

    css美化有序列表,贴出部分css代码         <ol >             <li>先涂粉底再涂防晒</li>             <li>先涂防晒再涂粉底</li>         </ol> <!doctype html> <html> <head> <title>CSS3 ordered list styles - demo</title> <style> body{ margin: 40px auto; width: 500px; } /* -------------------------------------- */ ol{ counter-reset: li; list-style: none; *list-style: decimal; font: 15px 'trebuchet ms', 'lucida sans'; padding: 0; margin-bottom: 4em; text-shadow: 0 1px 0 rgba(255,255,255,.5); } ol ol{ margin: 0 0 0 2em; } /* -------------------------------------- */

    标签: css 美化 序列

    上传时间: 2018-08-22

    上传用户:53660542

  • projcet2007项目管理软件模板

    projcet2007模板内容丰富,项目计划的编辑习惯,界面布局,时间计算的规则,任务的依赖关系等都和ms Project非常接近,用户会用ms Project,就会用我们的计划编辑功能。

    标签: projcet 2007 项目管理 软件 模板

    上传时间: 2019-02-19

    上传用户:自由自在xc

  • ms资料总结

    关于晶习预测,各种立场优化与结构文件的优化与分析

    标签: 软件教学 帮助掌握软件的操作与运行!!!!!!!!!!!!!

    上传时间: 2019-04-23

    上传用户:caicai123

  • ms常见问题解决

    ms8XF系列单片机常见问题解决办法,仿真器常见问题 ,烧录器及烧录器软件常见问题 等

    标签: ms 常见问题

    上传时间: 2019-06-11

    上传用户:jdz8888

  • matlab神经网络算法通信信号调制识别

    %========================开始提取加噪信号的各类特征值================================ for n=1:1:50;     m=n*Ns;     x=(n-1)*Ns; for i=x+1:m;          %提取加噪信号'signal_with_noise=y+noise'的前256个元素,抽取50次     y0(i)=signal_with_noise(i); end Y=fft(y0);        %对调制信号进行快速傅里叶算法(离散) y1=hilbert(y0) ;    %调制信号实部的解析式  factor=0;        %开始求零中心归一化瞬时幅度谱密度的最大值gamma_max for i=x+1:m;    factor=factor+y0(i); end ms=factor/(m-x); an_i=y0./ms; acn_i=an_i-1; end gamma_max=max(fft(acn_i.*acn_i))/Ns

    标签: matlab 神经网络算法 通信信号 调制识别

    上传时间: 2020-04-07

    上传用户:如拷贝般复制

  • matlab神经网络算法通信信号调制识别y

    %========================开始提取加噪信号的各类特征值================================ for n=1:1:50;     m=n*Ns;     x=(n-1)*Ns; for i=x+1:m;          %提取加噪信号'signal_with_noise=y+noise'的前256个元素,抽取50次     y0(i)=signal_with_noise(i); end Y=fft(y0);        %对调制信号进行快速傅里叶算法(离散) y1=hilbert(y0) ;    %调制信号实部的解析式  factor=0;        %开始求零中心归一化瞬时幅度谱密度的最大值gamma_max for i=x+1:m;    factor=factor+y0(i); end ms=factor/(m-x); an_i=y0./ms; acn_i=an_i-1; end gamma_max=max(fft(acn_i.*acn_i))/Ns

    标签: matlab 神经网络算法 通信信号 调制识别

    上传时间: 2020-04-07

    上传用户:如拷贝般复制

  • EDGE+for+Mobile+Internet

    The General Packet Radio Service (GPRS) allows an end user to send and receive data in packet transfer mode within a public land mobile network (PLMN) without using a permanent connection between the mobile station (ms) and the external network during data transfer. This way, GPRS opti- mizes the use of network and radio resources (RRs) since, unlike circuit- switched mode, no connection between the ms and the external network is established when there is no data flow in progress. Thus, this RR optimiza- tion makes it possible for the operator to offer more attractive fees.

    标签: Mobile EDGE

    上传时间: 2020-05-27

    上传用户:shancjb