-
ShowJPEG
显示JPEG图片的源码.........................................(show jpeg picture)
- 2013-12-25 21:55:52下载
- 积分:1
-
使用OPENGL显示由3DMAX导出的3DS文件
使用OPENGL显示由3DMAX导出的3DS文件(Use OPENGL show 3DMAX derived from 3DS file)
- 2020-06-27 07:20:02下载
- 积分:1
-
fft
fft傅里叶快速变化程序,里面说的很清楚,很使用。(FFT Fourier rapid change program, which made it very clear, is to use.
)
- 2014-05-11 20:59:38下载
- 积分:1
-
caffe-windows
caffe架构相关资料 介绍在window环境下的相关开发(Caffe architecture related materials introduced in the window environment of the relevant development)
- 2020-06-20 03:40:01下载
- 积分:1
-
C#chart控件画多条曲线
在个一个chart控件内画出多条曲线,并分别设置属性(Draw multiple curves in a chart control and set properties separately)
- 2020-07-21 21:38:46下载
- 积分:1
-
Apache-Server
Apache Server 在 Windows 环境下的安装与运行(Apache Server in the Windows environment and run the installation)
- 2013-09-03 00:53:48下载
- 积分:1
-
CC2530驱动LCD5110驱动程序
基于cc2530驱动LCD5110液晶显示代码,可以显示字母和字符。
- 2023-06-07 20:45:03下载
- 积分:1
-
Hartresorce
Hart源代码.HART协议简介下载30次,HART协议由Rosemount公司开发且已向每个使用者开放HART协议采用标准的频移键控.(Hart source code. HART agreement on downloaded 30 times. HART protocol developed by Rosemount and each user has to agree to adopt open standards HART The frequency shift keying.)
- 2007-05-21 10:05:38下载
- 积分:1
-
xv6源码
Xv6是由麻省理工学院(MIT)为操作系统工程的课程(代号6.828),开发的一个教学目的的操作系统。Xv6是在x86处理器上(x即指x86)用ANSI标准C重新实现的Unix第六版(Unix V6,通常直接被称为V6)。
- 2022-06-21 12:02:06下载
- 积分:1
-
一个简单的C# 多线程实例
一个简单的C# 多线程实例,创建多线程的简单实例,创建线程一和线程二,两者单独完成指定侨任务,创建多线程主要是使用C#中内置的方法new Thread()来实现,然后让每个线程执行一个for循环,来测试线程运行的效果。创建线程和运行线程的代码,可参考如下代码:
Thread thread1 = new Thread(new ThreadStart( Count));
thread1.Name="线程一";
Thread thread2 = new Thread(new ThreadStart( Count));
thread2.Name="线程二";
thread1.Start();
thread2.Start();
- 2022-08-18 15:51:20下载
- 积分:1