-
log-normal
说明: 对数正态分布改变闪烁指数下的光强起伏概率密度函数(Probability Density Function of Light Intensity Fluctuation with Lognormal Distribution Changing Scintillation Index)
- 2019-01-08 17:39:21下载
- 积分:1
-
javalocal
子类方法不可比父类方法抛出更多的例外。子类抛出的例外或者与父类抛出的例外一致,或者是父类抛出例外的子类型。或者子类型不抛出例外。(Class methods are not comparable to the parent class method throws more exceptions. The subclass thrown exception or thrown with the parent class exceptions, or the parent class throw exception sub type. Do not throw exceptions or sub type.
)
- 2013-10-18 19:51:43下载
- 积分:1
-
一款很好玩的五子棋游戏(不过只支持局域网内对战).
一款很好玩的五子棋游戏(不过只支持局域网内对战).
- 2023-02-07 08:55:03下载
- 积分:1
-
layer
说明: cad图层显示、关闭、冻结等快捷命令,非常好用(CAD layer display, close, freeze and other shortcut commands, very useful)
- 2020-06-21 17:20:01下载
- 积分:1
-
digital-filter-banks
The silde introduces about digital filter bank- an important concept in contemporary communication. Also, concept of L-band filters or Nyqist filter is introduced here.
- 2014-01-06 16:56:07下载
- 积分:1
-
ZOJ-1000-3046
ZOJ的测试源码,绝对是AC编程党的福利。(ZOJ test source code, the programming of the party s welfare.)
- 2014-10-24 09:31:16下载
- 积分:1
-
风力发电机组机侧控制
说明: 使用永磁同步电机在风力发电机组中的机侧控制(PID control of permanent magnet synchronous motor in wind turbine)
- 2020-04-25 18:09:43下载
- 积分:1
-
iccv09
ICCV09_Action Detection in Complex Scenes with Spatial and Temporal Ambiguities
- 2011-05-02 16:32:09下载
- 积分:1
-
用Flex开发的RSS通用阅读器,实现所有RSS资源的展示,要配合服务端进行....
用Flex开发的RSS通用阅读器,实现所有RSS资源的展示,要配合服务端进行.-Flex development with General RSS Reader, RSS resources, the realization of all the display, to tie in with the service side.
- 2022-08-08 09:08:44下载
- 积分: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