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

8.7

  • 在allegro中出gerber文件和CAM350中导入

    适用范围:  Cadence Allegro 15.2  Mentor CAM350 8.7

    标签: allegro gerber CAM 350

    上传时间: 2013-10-29

    上传用户:1051290259

  • 请将您需要的文件或目录拷贝到硬盘中。当Source目录下的源文件被拷贝到硬盘上时

    请将您需要的文件或目录拷贝到硬盘中。当\Source目录下的源文件被拷贝到硬盘上时,源文件的属性可能变为只读的,在编译之前应该将它们的属性改为可读写的。 \Source目录中的vcip.dsw包含了全书的所有项目,在Visual C++中打开它就能控制全部的代码。 光盘中各目录的内容如下所示: \Bin 本书所有示例的可执行文件,可直接在光盘中运行 \Images 用于图像处理测试的图像文件 \Source\ShowDIB 第2章2.5节示例的源程序 \Source\ViewDIB 第3章3.4节示例的源程序 \Source\EffectShow 第4章4.10节示例的源程序 \Source\TransformShow 第5章5.7节示例的源程序 \Source\ColorProcess 第6章6.10节示例的源程序 \Source\ImageProcess 第7章7.14节示例的源程序 \Source\Huffman 第8章8.1节示例的源程序 \Source\LZW 第8章8.1节示例的源程序 \Source\RLE 第8章8.1节示例的源程序 \Source\ViewImage 第8章8.7节示例的源程序 \Source\ImageLib 第9章9.1节图像工具库ImageLib的源程序 \Source\ImageBoard 第9章9.2节图像处理工具ImageBoard的源程序

    标签: Source 目录 硬盘

    上传时间: 2013-12-21

    上传用户:jiahao131

  • 结合单片机和M a t l a b 两者的优点

    结合单片机和M a t l a b 两者的优点,基于事件驱动的中断通信机制,提出一种Matlab 环境下PC 机与 单片机实时串行通信及数据处理的方法;完成单片机数据采集系统与PC 机的RS-232/RS-485 串行通 信及其通信数据的分析处理、文件存储、F I R 滤波及图形显示;简化系统开发流程,提高开发效率。 该方法已成功应用于一个P I C 1 6 F 8 7 6 单片机应用系统实例之中

    标签: 单片机

    上传时间: 2014-01-19

    上传用户:yzy6007

  • 1) Write a function reverse(A) which takes a matrix A of arbitrary dimensions as input and returns a

    1) Write a function reverse(A) which takes a matrix A of arbitrary dimensions as input and returns a matrix B consisting of the columns of A in reverse order. Thus for example, if A = 1 2 3 then B = 3 2 1 4 5 6 6 5 4 7 8 9 9 8 7 Write a main program to call reverse(A) for the matrix A = magic(5). Print to the screen both A and reverse(A). 2) Write a program which accepts an input k from the keyboard, and which prints out the smallest fibonacci number that is at least as large as k. The program should also print out its position in the fibonacci sequence. Here is a sample of input and output: Enter k>0: 100 144 is the smallest fibonacci number greater than or equal to 100. It is the 12th fibonacci number.

    标签: dimensions arbitrary function reverse

    上传时间: 2016-04-15

    上传用户:waitingfy

  • 1 前言 2 2 需求分析 2 2.1原理 2 2.2要求 2 2.3任务 2 3 概要设计 3 3.1实现功能 3 3.2抢答器的组成框图 3 4 详细设计 4 4.1抢答电路设

    1 前言 2 2 需求分析 2 2.1原理 2 2.2要求 2 2.3任务 2 3 概要设计 3 3.1实现功能 3 3.2抢答器的组成框图 3 4 详细设计 4 4.1抢答电路设计 4 4.2定时电路设计 5 4.3报警电路设计 6 4.4抢答器控制电路设计 6 5 课程设计的总结与体会 8 6 致谢 8 7 参考资料 8

    标签: 抢答器 抢答 详细设计

    上传时间: 2016-08-12

    上传用户:Andy123456

  • 批处理感知器算法

    批处理感知器算法的代码matlab w1=[1,0.1,1.1;1,6.8,7.1;1,-3.5,-4.1;1,2.0,2.7;1,4.1,2.8;1,3.1,5.0;1,-0.8,-1.3;     1,0.9,1.2;1,5.0,6.4;1,3.9,4.0]; w2=[1,7.1,4.2;1,-1.4,-4.3;1,4.5,0.0;1,6.3,1.6;1,4.2,1.9;1,1.4,-3.2;1,2.4,-4.0;     1,2.5,-6.1;1,8.4,3.7;1,4.1,-2.2]; w3=[1,-3.0,-2.9;1,0.5,8.7;1,2.9,2.1;1,-0.1,5.2;1,-4.0,2.2;1,-1.3,3.7;1,-3.4,6.2;     1,-4.1,3.4;1,-5.1,1.6;1,1.9,5.1]; figure; plot(w3(:,2),w3(:,3),'ro'); hold on; plot(w2(:,2),w2(:,3),'b+'); W=[w2;-w3];%增广样本规范化 a=[0,0,0]; k=0;%记录步数 n=1; y=zeros(size(W,2),1);%记录错分的样本 while any(y<=0)     k=k+1;     y=a*transpose(W);%记录错分的样本     a=a+sum(W(find(y<=0),:));%更新a     if k >= 250         break     end end if k<250     disp(['a为:',num2str(a)])      disp(['k为:',num2str(k)]) else      disp(['在250步以内没有收敛,终止']) end %判决面:x2=-a2*x1/a3-a1/a3 xmin=min(min(w1(:,2)),min(w2(:,2))); xmax=max(max(w1(:,2)),max(w2(:,2))); x=xmin-1:xmax+1;%(xmax-xmin): y=-a(2)*x/a(3)-a(1)/a(3); plot(x,y)

    标签: 批处理 算法matlab

    上传时间: 2016-11-07

    上传用户:a1241314660

  • dsp anc fxlms

    介绍了基于 0# 公司提供的 1)’ 芯片 0")/-.2$34.- 的自适应有源噪声控制(56789: ;<8=: 6<;7><?,,@$)系统,给出了系统的工作原理及其硬件结构,并详细说明了基于平均的 *+,*, (*8?7:>:A B C ,A5D789: *8?7:>8;E F87G ,9:>5E8;E)算法,给出了程序流程图和实验结果。通过实验证 明,该系统有较好的降噪效果

    标签: fxlms dsp anc

    上传时间: 2017-12-05

    上传用户:xiaoding

  • Radmin3.4中文注册版

    Radmin是一款简单实用,使用广泛的远程控制程序。它可让你通过你的电脑在别的电脑上工作。你可以在你自己的监视器上以全屏幕或自定义大小的窗口来查看远程电脑的屏幕。你的鼠标和键盘可以控制远程的电脑,你就好象直接坐在电脑前一样控制远程的电脑。 本站为用户提供Radmin 3.5完美破解版,内置破解补丁,支持完全控制、屏幕监视、Telnet、文件传输管理、语音聊天、文字聊天、发送讯息、关机等多个实用功能,后文附有详细的图文安装教程,亲测可用,有需求的用户请下载体验! 功能特色 1、Radmin 查看程序支持 Windows 8/2012/7/2008/Vista/2003/XP/2000/NT/ME/9x 2、Radmin 服务器支持 Windows 8/2012/7/2008/Vista/2003/XP/2000,并可全面支持 Windows 8/7/Vista 的快速用户切换功能 3、以实时速度工作:操作远程电脑就好象近在眼前 4、可靠性:Radmin 可连续几个月工作也不会有什么问题 5、安全性:Radmin 可提供最高标准的安全性 6、易用的用户界面:Radmin 直观易用 7、功能齐全 (文件传输,文字和语音聊天,实时讯息等等...)  8、支持多种语言  9、技术支持

    标签: Radmin

    上传时间: 2019-10-20

    上传用户:zhusg

  • 代码大全Steve McConnell著 919页高清文字版

    软件开发人员必备工具书,,目录如下Welcome to Software Construction [1]1.1 What Is Software Construction?1.2 Why Is Software Construction Important?1.3 How to Read This Book......7.1 Valid Reasons to Create a Routine7.2 Design at the Routine Level7.3 Good Routine Names7.4 How Long Can a Routine Be?7.5 How to Use Routine Parameters7.6 Special Considerations in the Use of Functions7.7 Macro Routines and Inline RoutinesDefensive Programming [5.6 + new material]8.1 Protecting Your Program From Invalid Inputs8.2 Assertions8.3 Error Handling Techniques8.4 Exceptions8.5 Barricade Your Program to Contain the Damage Caused by Errors8.6 Debugging Aids8.7 Determining How Much Defensive Programming to Leave in Production Code8.8 Being Defensive About Defensive ProgrammingThe Pseudocode Programming Process [4+new material]9.1 Summary of Steps in Building Classes and Routines9.2 Pseudocode for Pros9.3 Constructing Routines Using the PPP9.4 Alternatives to the PPP......

    标签: 代码大全 软件开发

    上传时间: 2021-12-08

    上传用户:20125101110

  • proteus8.5汉化包 中文语言包.rar

    我在本站下载过proteus8.7.sp3,但是只有一个安装包,安装时没有相关文件授权,而且没有汉化,这个压缩包是8.5版本的,但亲测8.7也适用。

    标签: proteus

    上传时间: 2022-07-24

    上传用户:kid1423