-
CDN网络路由技术、CDN网络路由技术
CDN网络路由技术, CDN网络路由技术-CDN network routing technology, CDN network routing technology
- 2022-04-12 20:18:53下载
- 积分:1
-
(1) 熟悉连续信号经理想采样前后的频谱变化关系,加深对时域采样定理的理解.
(2) 熟悉时域离散系统的时域特性
(3) 利用卷积方法观察分析系统的时域...
(1) 熟悉连续信号经理想采样前后的频谱变化关系,加深对时域采样定理的理解.
(2) 熟悉时域离散系统的时域特性
(3) 利用卷积方法观察分析系统的时域特性.
(4) 掌握序列傅立叶变换的计算机实现方法,利用序列的傅立叶变换对连续信号,离散信号及系统响应进行频域分析.
-(1) familiar with the continuous signal to the manager before and after the sampling of the spectrum changes relations and deepen the time-domain sampling theorem understanding. (2) familiar with the time-domain system discrete time-domain (3) using deconvolution method of analysis in time domain characteristics. (4) master sequence Fourier Transform computer, using the Fourier transform sequence of continuous signals, Discrete signal system response and frequency domain analysis.
- 2022-03-19 23:10:38下载
- 积分:1
-
这是一个台球做的一半的源代码,有很多不足之处,但它有它的…
这个是桌球做到一半的源代码,很多不足,不过有自己的思想在里面,多多指教-This is a billiard do half of the source code, many inadequacies, but it has its own thinking on the inside, exhibitions
- 2023-03-12 19:45:03下载
- 积分:1
-
Method of Moments Lecture Notes
Method of Moments Lecture Notes
- 2022-06-18 08:23:56下载
- 积分:1
-
Rs232 Rs232
Rs232 Rs232 -Rs232 Rs232 Rs232 Rs232
- 2023-07-14 07:45:02下载
- 积分:1
-
个C++ OCX控件可以在你应用程序的窗口上绘制图片。
个C++ OCX控件可以在你应用程序的窗口上绘制图片。-C OCX controls in your application"s window on the drawing pictures.
- 2022-10-20 17:25:03下载
- 积分:1
-
一种快速准确的网络入侵检测系统
- 2022-02-05 09:00:19下载
- 积分:1
-
SAR影像配准源代码,能够实现单视复数影像的配准,为干涉做前期数据处理...
SAR影像配准源代码,能够实现单视复数影像的配准,为干涉做前期数据处理-SAR image matching source code, to achieve single-look complex image registration, in order to make preparations for data processing interference
- 2022-02-03 15:31:38下载
- 积分:1
-
Drive ccts for use with solenoid
Drive ccts for use with solenoid
- 2022-04-15 08:08:37下载
- 积分:1
-
CoStream 无缓存 Pipe Stream
翻译 maninwest@Codeforge 作者:Sergey Nozhenko@CodeProject介绍:CoStream 是的 PipeStream 无缓存替代选择。背景在生产者/消费者模式下,如果我们知道一个消费者确定要读取stream 读到结束或者如果不能读到结束就处理,那么同步stream 就不需要维护自己的内部缓存,完全依赖于 Read 方法调用者的缓存。在Read 方法中,CoStream 保存到目标缓存的引用并等待,直至完成。而 write 方法从源缓存中复制数据到目标缓存,会给读取者发送信号缓存已准备就绪或者需要等待期 Read 调用(如果来源缓存中有未消耗的数据剩下或者返回到Writer 调用者)。使用代码CoStream 不能在单个话题中使用。应该至少有两个,读取和写入话题。两者都需要关闭(或处理)stream,一边对方可以继续到结束。测试程序在 XmlDocument 中加载了一些 xml 文件。然后将其写入到 CoStream 的实例Static CoStream costream = new TestCoStream();
static string outpath;
static void Main(string[] args)
{
// ...
XmlDocument doc = new XmlDocument();
doc.Load(args[0]);
outpath = args[1];
var reading_thread = new Thread(ReaderBody);
reading_thread.Start();
using (var pipe = XmlWriter.Create(costream, new XmlWriterSettings { CloseOutput = true }))
doc.Save(pipe);
reading_thre
- 2022-03-17 17:34:17下载
- 积分:1