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

Pci-<b>Pci</b>

  • 离散实验 一个包的传递 用warshall

     实验源代码 //Warshall.cpp #include<stdio.h> void warshall(int k,int n) { int i , j, t; int temp[20][20]; for(int a=0;a<k;a++) { printf("请输入矩阵第%d 行元素:",a); for(int b=0;b<n;b++) { scanf ("%d",&temp[a][b]); } } for(i=0;i<k;i++){ for( j=0;j<k;j++){ if(temp[ j][i]==1) { for(t=0;t<n;t++) { temp[ j][t]=temp[i][t]||temp[ j][t]; } } } } printf("可传递闭包关系矩阵是:\n"); for(i=0;i<k;i++) { for( j=0;j<n;j++) { printf("%d", temp[i][ j]); } printf("\n"); } } void main() { printf("利用 Warshall 算法求二元关系的可传递闭包\n"); void warshall(int,int); int k , n; printf("请输入矩阵的行数 i: "); scanf("%d",&k); 四川大学实验报告 printf("请输入矩阵的列数 j: "); scanf("%d",&n); warshall(k,n); } 

    标签: warshall 离散 实验

    上传时间: 2016-06-27

    上传用户:梁雪文以

  • 道理特分解法

    #include "iostream" using namespace std; class Matrix { private: double** A; //矩阵A double *b; //向量b public: int size; Matrix(int ); ~Matrix(); friend double* Dooli(Matrix& ); void Input(); void Disp(); }; Matrix::Matrix(int x) { size=x; //为向量b分配空间并初始化为0 b=new double [x]; for(int j=0;j<x;j++) b[j]=0; //为向量A分配空间并初始化为0 A=new double* [x]; for(int i=0;i<x;i++) A[i]=new double [x]; for(int m=0;m<x;m++) for(int n=0;n<x;n++) A[m][n]=0; } Matrix::~Matrix() { cout<<"正在析构中~~~~"<<endl; delete b; for(int i=0;i<size;i++) delete A[i]; delete A; } void Matrix::Disp() { for(int i=0;i<size;i++) { for(int j=0;j<size;j++) cout<<A[i][j]<<" "; cout<<endl; } } void Matrix::Input() { cout<<"请输入A:"<<endl; for(int i=0;i<size;i++) for(int j=0;j<size;j++){ cout<<"第"<<i+1<<"行"<<"第"<<j+1<<"列:"<<endl; cin>>A[i][j]; } cout<<"请输入b:"<<endl; for(int j=0;j<size;j++){ cout<<"第"<<j+1<<"个:"<<endl; cin>>b[j]; } } double* Dooli(Matrix& A) { double *Xn=new double [A.size]; Matrix L(A.size),U(A.size); //分别求得U,L的第一行与第一列 for(int i=0;i<A.size;i++) U.A[0][i]=A.A[0][i]; for(int j=1;j<A.size;j++) L.A[j][0]=A.A[j][0]/U.A[0][0]; //分别求得U,L的第r行,第r列 double temp1=0,temp2=0; for(int r=1;r<A.size;r++){ //U for(int i=r;i<A.size;i++){ for(int k=0;k<r-1;k++) temp1=temp1+L.A[r][k]*U.A[k][i]; U.A[r][i]=A.A[r][i]-temp1; } //L for(int i=r+1;i<A.size;i++){ for(int k=0;k<r-1;k++) temp2=temp2+L.A[i][k]*U.A[k][r]; L.A[i][r]=(A.A[i][r]-temp2)/U.A[r][r]; } } cout<<"计算U得:"<<endl; U.Disp(); cout<<"计算L的:"<<endl; L.Disp(); double *Y=new double [A.size]; Y[0]=A.b[0]; for(int i=1;i<A.size;i++ ){ double temp3=0; for(int k=0;k<i-1;k++) temp3=temp3+L.A[i][k]*Y[k]; Y[i]=A.b[i]-temp3; } Xn[A.size-1]=Y[A.size-1]/U.A[A.size-1][A.size-1]; for(int i=A.size-1;i>=0;i--){ double temp4=0; for(int k=i+1;k<A.size;k++) temp4=temp4+U.A[i][k]*Xn[k]; Xn[i]=(Y[i]-temp4)/U.A[i][i]; } return Xn; } int main() { Matrix B(4); B.Input(); double *X; X=Dooli(B); cout<<"~~~~解得:"<<endl; for(int i=0;i<B.size;i++) cout<<"X["<<i<<"]:"<<X[i]<<" "; cout<<endl<<"呵呵呵呵呵"; return 0; } 

    标签: 道理特分解法

    上传时间: 2018-05-20

    上传用户:Aa123456789

  • CPCI_E标准规范 CompactPCI® Express Specification

    CPCI_E标准规范 CompactPCI® Express SpecificationThe documents in this section may be useful for reference when reading the specification. The  revision listed for each document is the latest revision at the time this specification was published.  Newer revisions of these documents may exist, so refer to the newest revision. Many of these  documents are referenced throughout this specification. Refer to the newest revision of the  document unless a specific revision is referenced. • PCI Express Base Specification 3.0. PCI Special Interest Group (PCI-SIG). • PCI Express Card Electromechanical (CEM) Specification 3.0. PCI Special Interest Group  (PCI-SIG). • PCI Express to PCI/PCI-X Bridge Specification, Rev. 1.0. PCI Special Interest Group  (PCI-SIG). • PCI Express Jitter White Paper. PCI Special Interest Group (PCI-SIG). • PCIe Rj Dj BER White Paper. PCI Special Interest Group (PCI-SIG). • PHY Electrical Test Specification for PCI Express Architecture. PCI Special Interest Group  (PCI SIG). • System Management Bus (SMBus) Specification, Version 2.0. Smart Battery System  Implementer’

    标签: CPCIE

    上传时间: 2022-02-23

    上传用户:

  • CH341系列编程器芯片usb转串口Altium Designer AD原理图库元件库

     CH341系列编程器芯片usb转串口Altium Designer AD原理图库元件库CSV text has been written to file : 1.9 - CH341系列编程器芯片.csvLibrary Component Count : 56Name                Description----------------------------------------------------------------------------------------------------CH311Q              PC debug port monitorCH331T              Mini USB Disk ControllerCH340G              CH340H              USB to TTL Serial / UART,  USB to IrDACH340T              USB to TTL Serial / UART,  USB to IrDACH340R              USB to IrDA, USB to RS232 SerialCH340S_P            USB to Print Port / ParallelCH340S_S            USB to TTL Serial / UART, pin compatible with CH341CH341A_S            USB to TTL Serial / UART / I2C/IICCH341S_P            USB to Print Port / ParallelCH341A_P            USB to Print Port / ParallelCH341S_S            USB to TTL Serial / UARTCH341S_X            USB to EPP Parallel / SPI / I2C/IICCH341A_X            USB to EPP Parallel / SPI / I2C/IICCH341T              USB to TTL Serial / UART / I2C/IICCH345T              USB to MidiCH352L_M            PCI to 8255 mode 2 Parallel for MCU and 16C550 UART / IrDACH352L_P            PCI to Print Port / Parallel and 16C550 UART / IrDACH352L_S            PCI to Dual 16C550 UART, TTL Serial*2 / IrDA*1CH362L              PCI Device / Slave only for RAM / Expansion ROMCH364F              Member of CH364 chipsetsCH364P              PCI Device / Slave Embedded Flash ROM, for Expansion ROMCH365P              PCI Device / Slave, for I/O port or RAM / ROMCH372T              USB Device / Slave for MCU, ParallelCH372A              USB Device / Slave for MCU, ParallelCH372V              USB Device / Slave for MCU, ParallelCH374S              USB Host & Device / Slave for MCU, parallel / SPICH374T              USB Host & Device / Slave for MCU, parallel / SPICH375S              USB Host & Device / Slave for MCU, parallel / UART SerialCH375A              USB Host & Device / Slave for MCU, parallel / UART SerialCH375V              USB Host & Device / Slave for MCU, parallel / UART SerialCH411G              FDC MFM encode and decodeCH421A              Dual port bufferCH421S              Dual port bufferCH423D              I2C/IIC I/O expander, 16 GPO + 8 GPIO, 128 LEDs DriveCH423S              I2C/IIC I/O expander, 16 GPO + 8 GPIO, 128 LEDs DriveCH423D_D            I2C/IIC I/O expander, 16 GPO + 8 GPIO, 128 LEDs DriveCH423S_D            I2C/IIC I/O expander, 16 GPO + 8 GPIO, 128 LEDs DriveCH423G              I2C/IIC I/O expander, 6 GPO + 5 GPIOCH432Q              Dual 16C550 UART with IrDA, parallel / SPICH432T              SPI Dual 16C550 UART with IrDACH450K              6 Digits / 48 LEDs Drive & 8x6 Keyboard, I2C/IICCH450H              6 Digits / 48 LEDs Drive & 8x6 Keyboard, I2C/IICCH450L              8 Digits / 64 LEDs Drive & 8x8 Keyboard, I2C/IICCH451L              8 Digits / 64 LEDs Drive & 8x8 Keyboard, 4 Wire Interface, SPICH451S              8 Digits / 64 LEDs Drive & 8x8 Keyboard, 4 Wire Interface, SPICH451D              8 Digits / 64 LEDs Drive & 8x8 Keyboard, 4 Wire Interface, SPICH452L_2            8 Digits / 64 LEDs Drive & 8x8 Keyboard, I2C/IICCH452L_4            8 Digits / 64 LEDs Drive & 8x8 Keyboard, 4 Wire Interface, SPICH452S_2            8 Digits / 64 LEDs Drive & 8x8 Keyboard, I2C/IICCH452S_4            8 Digits / 64 LEDs Drive & 8x8 Keyboard, 4 Wire Interface, SPICH453S              16 Digits / 128 LEDs Drive, I2C/IICCH453D              16 Digits / 128 LEDs Drive, I2C/IICPCI                 32Bit PCI Bus, simple / short cardPCI32               32Bit PCI BusUSB                 USB Port

    标签: ch341 编程芯片 usb 串口 altium designer

    上传时间: 2022-03-13

    上传用户:

  • 安森美车规级1080P图像传感器AR0231手册

    AR0231AT7C00XUEA0-DRBR(RGB滤光)安森美半导体推出采用突破性减少LED闪烁 (LFM)技术的新的230万像素CMOS图像传感器样品AR0231AT,为汽车先进驾驶辅助系统(ADAS)应用确立了一个新基准。新器件能捕获1080p高动态范围(HDR)视频,还具备支持汽车安全完整性等级B(ASIL B)的特性。LFM技术(专利申请中)消除交通信号灯和汽车LED照明的高频LED闪烁,令交通信号阅读算法能于所有光照条件下工作。AR0231AT具有1/2.7英寸(6.82 mm)光学格式和1928(水平) x 1208(垂直)有源像素阵列。它采用最新的3.0微米背照式(BSI)像素及安森美半导体的DR-Pix™技术,提供双转换增益以在所有光照条件下提升性能。它以线性、HDR或LFM模式捕获图像,并提供模式间的帧到帧情境切换。 AR0231AT提供达4重曝光的HDR,以出色的噪声性能捕获超过120dB的动态范围。AR0231AT能同步支持多个摄相机,以易于在汽车应用中实现多个传感器节点,和通过一个简单的双线串行接口实现用户可编程性。它还有多个数据接口,包括MIPI(移动产业处理器接口)、并行和HiSPi(高速串行像素接口)。其它关键特性还包括可选自动化或用户控制的黑电平控制,支持扩频时钟输入和提供多色滤波阵列选择。封装和现状:AR0231AT采用11 mm x 10 mm iBGA-121封装,现提供工程样品。工作温度范围为-40℃至105℃(环境温度),将完全通过AEC-Q100认证。

    标签: 图像传感器

    上传时间: 2022-06-27

    上传用户:XuVshu

  • TMS320C6000 DSP PCI Reference Guide (Rev. B).pdf

    TMS320C6000 DSP PCI Reference Guide (Rev. B).pdf

    标签: Reference C6000 Guide 320C

    上传时间: 2016-05-02

    上传用户:zq70996813

  • 基于FPGA的PCI接口运动控制卡的研究.rar

    运动控制技术是机电一体化的核心部分,提高运动控制技术水平对于提高我国的机电一体化技术具有至关重要的作用。运动控制技术的发展是制造自动化前进的旋律,是推动新的产业革命的关键技术。对于数控系统来说,最重要的是控制各个电机轴的运动,这是运动控制器接收并依照数控装置的指令来控制各个电机轴运动从而实现数控加工的,数据加工中的定位控制精度、速度调节的性能等重要指标都与运动控制器直接相关。目前对数控系统的研究都集中在插入PC的NC控制器的研究上,而其核心部分就是对步进、伺服电机进行控制的运动控制卡的研究。对PC-NC来说,运动控制卡的性能很大程度上决定了整个数控系统的性能,而微电子和数字信号处理技术的发展及其应用,使运动控制卡的性能得到了不断改进,集成度和可靠性大大提高。 本课题通过对运动控制技术的深入研究,并针对国内运动控制技术的研究起步较晚的现状,结合当前运动控制领域的具体需要,紧跟当前运动控制技术研究的发展趋势,吸收了数控技术和相关运动控制技术的最新成果,提出了基于PCI和FPGA的方案,研制了一款比较新颖的、功能强大的、具有很大柔性的四轴多功能运动控制卡。 本课题的具体研究主要有以下几方面: 首先,通过对运动控制卡及运动控制系统等行业现状的全面调研,和对运动控制技术的深入学习,在比较了几种常用的运动控制方案的基础上,提出了基于FPGA的运动控制设计方案,并规划了板卡的总体设计。 其次,根据总体设计,规划了板卡的结构,详细划分并实现了FPGA各部分的功能;利用光电隔离原理设计了数字输入/输出电路。 再次,利用FPGA的资源实现了PCI从设备接口,达到跟控制卡通信的目的,针对运动控制中的一些具体问题,如运动平稳性、实时控制以及多轴联动等,在FPGA上设计了四轴运动控制电路,定义了各个寄存器的具体功能,设计了功能齐全的加/减速控制电路、变频分配电路、倍频分频电路和三个功能各异的计数器电路等,自动降速点运动、A/B相编码器倍频计数电路等特殊功能。最后,进行了本运动控制卡的测试,从测试和应用结果来看,该卡达到预期的要求。

    标签: FPGA PCI 接口

    上传时间: 2013-07-27

    上传用户:zgu489

  • The Ralink 802.11n Chipset family provides solutions for PCI, PCIe and USB interfaces with both 2.4

    The Ralink 802.11n Chipset family provides solutions for PCI, PCIe and USB interfaces with both 2.4 and 2.4/5GHz suppport. Each chipset consists of two highly integrated ICs (RFIC and BB/MAC IC) that fully comply with current draft IEEE 802.11n and IEEE 802.11a/b/g standards.

    标签: interfaces solutions provides Chipset

    上传时间: 2014-01-13

    上传用户:Thuan

  • PCI总线标准协议

    PCI总线标准协议

    标签: PCI 总线 标准协议

    上传时间: 2013-04-15

    上传用户:eeworm

  • PCI Local Bus v2.1

    PCI Local Bus v2.1

    标签: Local PCI Bus 2.1

    上传时间: 2013-04-15

    上传用户:eeworm