-
DotSpatial 1.9
说明: dospatial的dll文件,来源dospatial官网(Dospatial's DLL file, source dospatial official website)
- 2020-12-07 21:39:21下载
- 积分:1
-
wcf 实现大文件上传(有进度条)实例源码
部分win7/win8用户 运行时报错 可能是 权限问题,所以运行项目的时候 要右键>>以管理员身份运行 部分用户 运行该项目的时候 可能提示:协定需要双工 但是绑定 NetTcpBinding 不支持 这是只需要将host项目app.config中协议部分 改为wsDualHttpBinding 即可,如下代码: 另外使用wcf时,最好不要使用 using 因为使用using会屏蔽掉很多错误,误导用户,参考链接:http://www.codeproject.com/Tips/197531/Do-not-use-using-for-WCF-Clients 相关代码改为:using System;using System.Collections.Generic;using System.Linq;using System.Windows.Forms;using System.ServiceModel;namespace WcfUploadServiceHost{ static class Program { /// /// The main entry point for the application. /// [STAThread] static void Main() { try { var host = new ServiceHost(typeof (WcfUploadServiceLib.UpLoadService)); host.Open(); Console.WriteLine("Server is opened..."); Console.Read(); //using (var host = new ServiceHost(typeof(WcfUploadServiceLib.UpLoadService))) //{ // host.Open(); // Console.WriteLine("Server is opened..."); // Console.Read(); //} } catch (Exception ex) { Console.WriteLine(ex.ToString()); Console.Read(); } } }}
- 2015-01-07下载
- 积分:1
-
USB-Example
周立功LPC23XX开发板USB例程,共大家参考,可以节省开发周期!(LPC23XX USB)
- 2020-11-22 11:39:34下载
- 积分:1
-
ADSP21369
说明: 对ADSP21369的原理图和测试程序进行搜集,可以在21369-EZ-KIT LITE上运行。(The schematic diagram of ADSP21369 and testing procedures to collect, can be 21369-EZ-KIT LITE run.)
- 2008-09-17 14:51:56下载
- 积分:1
-
realtime_audiu_process
说明: 实时语音信号处理系统设计源码,基于TMS320C6711的,还有AD535 Codec介绍及其在系统设计中的应用。(real-time voice signal processing system design source, based on the TMS320C6711, There AD535 Codec introduced in system design applications.)
- 2006-03-22 22:54:38下载
- 积分:1
-
zoj1094
zoj094
Matrix multiplication problem is a typical example of dynamical programming.
Suppose you have to evaluate an expression like A*B*C*D*E where A,B,C,D and E are matrices. Since matrix multiplication is associative, the order in which multiplications are performed is arbitrary. However, the number of elementary multiplications needed strongly depends on the evaluation order you choose.
For example, let A be a 50*10 matrix, B a 10*20 matrix and C a 20*5 matrix.
There are two different strategies to compute A*B*C, namely (A*B)*C and A*(B*C).
The first one takes 15000 elementary multiplications, but the second one only 3500.
Your job is to write a program that determines the number of elementary multiplications needed for a given evaluation strategy.
(Matrix multiplication problem is a typical example of dynamical programming.
Suppose you have to evaluate an expression like A*B*C*D*E where A,B,C,D and E are matrices. Since matrix multiplication is associative, the order in which multiplications are performed is arbitrary. However, the number of elementary multiplications needed strongly depends on the evaluation order you choose.
For example, let A be a 50*10 matrix, B a 10*20 matrix and C a 20*5 matrix.
There are two different strategies to compute A*B*C, namely (A*B)*C and A*(B*C).
The first one takes 15000 elementary multiplications, but the second one only 3500.
Your job is to write a program that determines the number of elementary multiplications needed for a given evaluation strategy.
)
- 2012-06-10 10:38:53下载
- 积分:1
-
att7053bu
本文件用于7053芯片的驱动程序,产品实际应用程序(Drivers This file is used for 7053 chip, the product practical application)
- 2015-12-14 22:15:30下载
- 积分:1
-
at91rm9200.c
atmel公司的At90系列嵌入式开发程序
可以学习别人良好的编程习惯(atmel' s At90 series of embedded development process can learn from others, good programming practice to)
- 2009-11-11 09:20:03下载
- 积分:1
-
GenericCPPLib-master
enables specific handling of four-digit numbers with non-zero hundreds: they are often named using multiples of hundred AND combined with tens AND/OR ones ( one thousand one , eleven hundred three , twelve hundred twenty-five , four thousand forty-two , or ninety-nine hundred ninety-nine etc)
- 2016-05-28 16:00:24下载
- 积分:1
-
GraphExample2
用c#实现画图功能,可以画出各种图形,如矩形,圆形,菱形等,还可以随意拖动,放大缩小(It can draw graphics)
- 2021-01-21 21:58:42下载
- 积分:1