可编程,Programmable
1)Programmable[英]['pr??ɡr?m?bl][美]['progr?m?bl?]可编程
1.Design of a programmable low-pass filter based on high reliability and its applications;一种高可靠性可编程低通滤波器的设计与应用
2.A design of a programmable circuit of electrical source of batteries;可编程电池电源管理电路的设计
3.The optimizing design of the programmable instrumentation amplifier;可编程仪表放大器的优化设计
英文短句/例句

1.portable PROM programmer便携式可编程只读存储器编程器
2.dynamic programmable computer动态可编程序的计算机
3.programmable electronic timer可编程序的电子计时器
4.PLM (Programmable Logic Matrice)可编程序的逻辑矩阵
5.programmable data selector可编程序数据选择器
6.programmable digital controller可编程序数字控制机
7.programmable calculating oscilloscope可编程序的计算示波器
8.programmable index register可编程序变址寄存器
9.programmable atrio-pacemaker可编程序心房起搏器
10.programmable communication controller可编程序的通信控制器
11.mable mable operational amplifier可编程序运算放大器
12.programmable fire detection zone可编程序的火灾探测区
13.APIC Advanced rogrammable Interrupt Controller高级可编程中断控制器
14.programmable communication interface可编程序的通信接口
15.programmable communications interface可编程序通信接口设备
16.programmable data mover可编程序的数据传送器
17.mask programmable integration掩模可编程序集成电路
18.PVPU Programable Vertex Processing Unit可编程顶点处理单元
相关短句/例句

PLC可编程
1.In recent years,advanced technologies such as variable frequency speed regulation and PLC are employed as substitution of the conventional mechanic conveying for the improvement of the stability and reliability of the textile equipments.针对近年来国内外纺织机械设备制造商采用先进变频调速及PLC可编程控制技术等先进电子技术取代传统的机械传动结构,从而提高机械设备整机的稳定性、可靠性的趋势,分析了变频调速和PLC技术的优点及其在棉纺设备中推广应用的必要性,通过实例分析了该技术在清花棉卷均匀成形、梳棉机、粗纱机、浆纱及整经设备等方面的应用,指出应用变频调速及PLC技术的棉纺设备的价格较高,虽然目前维修方面的成本较高、难度较大,但随着产品的日益国际化,该技术必将大幅提高产品产量和质量,扩大品种的适应性。
2.The article introduces how to control Na+ water softening system with PLC, to improve the reliability of operation.本文所述的是如何用可编程控制器(PLC)控制钠离子软水系统,从而提高系统运行的可靠性问题。
3.The programme refers to the PLC typical applications, serial communications technology, TC35i, GSM MODEM, SMS, etc.首先介绍和分析了管道运输防盗预警技术,在此基础上给出了系统的设计目标和解决方案,并描述了系统的组成和各部分的主要功能;介绍了对偷盗信号信息的采集和处理的方法,利用AT指令控制TC35i模块,从而实现SMS短消息收发的方法;又介绍了可编程控制部分的设计和终端PC通过GSM MODEM接收SMS的实现界面。
3)programming[英]['pr??ɡr?m??][美]['progr?m??]可编程
1.JagBASIC and TaskExpert were programming technology for weighing instrument which were originally created by METTLER-TOLEDO.JagBASIC和TaskExper(t任务专家)是梅特勒-托利多公司独创的称重仪表可编程技术。
2.The paper introduces In-System Programming device and its programmable principles.介绍在系统可编程器件及其编程原理,同时利用在系统编程技术完成频率测试仪设计,并实现对频率测试仪的功能仿
3.According to the generating theory of PWM wave,a new design of digital PWM wave generator based on CPLD is introduced It has advantages of accurate control?simple operation and programming on lin他具有灵活简便、控制精确、现场可编程等优
4)programmable[英]['pr??ɡr?m?bl][美]['progr?m?bl?]可编程序
1.The technology of programmable interpolation and wrong revise;可编程序插补器和非线性校正技术
5)programmability可编程性
1.This paper summarizes the techniques of programmability,reliability and low power for GPU,and discusses the development trend of the CPU-GPGPU heterogeneous architecture.本文综述了针对这一体系结构现有的可编程性技术、可靠性技术和低功耗技术,并结合这些技术展望了CPU-GPGPU这种异构系统的发展趋势。
2.By utilizing field programmable gate array’s programmability and compiler technology, FPGAs which are aiming at integrity invalidating and decryption are placed between CPU and main memory.利用现场可编程门阵列(FPGA)的可编程性和结合编译器技术,将具有完整性验证和解密的功能的FPGA放置在CPU和主存之间,执行编译器驱动的特定软件,该方法可以使体系保持灵活性。
6)programmable GPU可编程GPU
1.This article introduced the work way of programmable GPU and the supported technology of it;and researched the GPU-based volume rendering;and analyzed a method of texture encoding and real-time rendering.本文主要介绍了GPU的工作原理和技术支持,研究了利用可编程GPU的体绘制技术,分析了利用可编程GPU进行图像编码与实时绘制的一种方法和算法。
延伸阅读

Autocad VBA初级教程 (第三课 编程基础二)有一位叫自然9172的网友提出了下面的问题:绘制三维多段线时X、Y值在屏幕上用鼠标选取,Z值用键盘输入本课将讲解这个问题。为了简化程序,这里用多条直线来代替多段线。以下是源码:Sub myl()Dim p1 As Variant '申明端点坐标Dim p2 As Variantp1 = ThisDrawing.Utility.GetPoint(, "输入点:") '获取点坐标z = ThisDrawing.Utility.GetReal("Z坐标:") '用户输入Z坐标值p1(2) = z '将Z坐标值赋予点坐标中On Error GoTo Err_Control '出错陷井Do '开始循环 p2 = ThisDrawing.Utility.GetPoint(p1, vbCr & "输入下一点:") '获取下一个点的坐标 z = ThisDrawing.Utility.GetReal("Z坐标:") '用户输入Z坐标值 p2(2) = z '将Z坐标值赋予点坐标中 Call ThisDrawing.ModelSpace.AddLine(p1, p2) '画直线 p1 = p2 '将第二点的端点保存为下一条直线的第一个端点坐标LoopErr_Control:End Sub先谈一下本程序的设计思路:1、获取第一点坐标2、输入第一点Z坐标3、获取第二点坐标4、输入第二点Z坐标5、以第一、二点为端点,画直线6、下一条线的第一点=这条线的第二点7、回到第3步进行循环如果用户没有输入坐标或Z值,则程序结束。首先看以下两条语句:p1 = ThisDrawing.Utility.GetPoint(, "输入点:") ‘获取点坐标……p2 = ThisDrawing.Utility.GetPoint(p1, vbCr & "输入下一点:") '获取下一个点的坐标这两条语句的作用是由用户输入点用鼠标选取点坐标,并把坐标值赋给p1、p2两个变量。ThisDrawing.Utility.GetPoint()在ACAD中这是最常用的方法之一,它需要两个参数,在逗号前面的参数应该是一个点坐标,它的作用是在屏幕上画一条线,前一个端点位于点坐标位置,后一个端点跟随鼠标移动,逗号之前可以什么都不填,这时没有线条会跟随鼠标移动,但逗号必须保留。逗号后面使用一串字符,程序在命令行显示这串字符,这不难理解。VbCr通常代表一个回车符,而在这个语句中,它的作用是在命令行不显示“命令:”&的作用是连接字符。举例:“爱我中华 ”&”抵制日货 ”&”从我做起”z = ThisDrawing.Utility.GetReal("Z坐标:") '用户输入Z坐标值由用户输入一个实数On Error GoTo Err_Control '出错陷井……Err_Control:On Error是出错陷井语句,在程序出错时将执行On Error 后面的语句GoTo Err_contorl 是程序跳转语句,它的作用是在程序中寻找Err_control:,并执行这一行后面的语句,本例中Err_Control:后就是结束宏,所以只要出现错误,程序中止。