数字信号处理词汇英文翻译
专业英语翻译之数字信号处理

Signal processingSignal processing is an area of electrical engineering and applied mathematics that deals with operations on or analysis of signals, in either discrete or continuous time, to perform useful operations on those signals. Signals of interest can include sound, images, time-varying measurement values and sensor data, for example biological data such as electrocardiograms, control system signals, telecommunication transmission signals such as radio signals, and many others. Signals are analog or digital electrical representations of time-varying or spatial-varying physical quantities. In the context of signal processing, arbitrary binary data streams and on-off signalling are not considered as signals, but only analog and digital signals that are representations of analog physical quantities.HistoryAccording to Alan V. Oppenheim and Ronald W. Schafer, the principles of signal processing can be found in the classical numerical analysis techniques of the 17th century. They further state that the "digitalization" or digital refinement of these techniques can be found in the digital control systems of the 1940s and 1950s.[2]Categories of signal processingAnalog signal processingAnalog signal processing is for signals that have not been digitized, as in classical radio, telephone, radar, and television systems. This involves linear electronic circuits such as passive filters, active filters, additive mixers, integrators and delay lines. It also involves non-linear circuits such ascompandors, multiplicators (frequency mixers and voltage-controlled amplifiers), voltage-controlled filters, voltage-controlled oscillators andphase-locked loops.Discrete time signal processingDiscrete time signal processing is for sampled signals that are considered as defined only at discrete points in time, and as such are quantized in time, but not in magnitude.Analog discrete-time signal processing is a technology based on electronic devices such as sample and hold circuits, analog time-division multiplexers, analog delay lines and analog feedback shift registers. This technology was a predecessor of digital signal processing (see below), and is still used in advanced processing of gigahertz signals.The concept of discrete-time signal processing also refers to a theoretical discipline that establishes a mathematical basis for digital signal processing, without taking quantization error into consideration.Digital signal processingDigital signal processing is for signals that have been digitized. Processing is done by general-purpose computers or by digital circuits such as ASICs, field-programmable gate arrays or specialized digital signal processors (DSP chips). Typical arithmetical operations include fixed-point and floating-point, real-valued and complex-valued, multiplication and addition. Other typical operations supported by the hardware are circular buffers and look-up tables. Examples of algorithms are the Fast Fourier transform (FFT), finite impulseresponse (FIR) filter, Infinite impulse response (IIR) filter, and adaptive filters such as the Wiener and Kalman filters1.Digital signal processingDigital signal processing (DSP) is concerned with the representation of signals by a sequence of numbers or symbols and the processing of these signals. Digital signal processing and analog signal processing are subfields of signal processing. DSP includes subfields like: audio and speech signal processing, sonar and radar signal processing, sensor array processing, spectral estimation, statistical signal processing, digital image processing, signal processing for communications, control of systems, biomedical signal processing, seismic data processing, etc.The goal of DSP is usually to measure, filter and/or compress continuousreal-world analog signals. The first step is usually to convert the signal from an analog to a digital form, by sampling it using an analog-to-digital converter (ADC), which turns the analog signal into a stream of numbers. However, often, the required output signal is another analog output signal, which requires a digital-to-analog converter (DAC). Even if this process is more complex than analog processing and has a discrete value range, the application of computational power to digital signal processing allows for many advantages over analog processing in many applications, such as error detection and correction in transmission as well as data compression.[1]DSP algorithms have long been run on standard computers, on specialized processors called digital signal processors (DSPs), or on purpose-built hardware such as application-specific integrated circuit (ASICs). Today thereare additional technologies used for digital signal processing including more powerful general purpose microprocessors, field-programmable gate arrays (FPGAs), digital signal controllers (mostly for industrial apps such as motor control), and stream processors, among others.[2]2. DSP domainsIn DSP, engineers usually study digital signals in one of the following domains: time domain (one-dimensional signals), spatial domain (multidimensional signals), frequency domain, autocorrelation domain, and wavelet domains. They choose the domain in which to process a signal by making an informed guess (or by trying different possibilities) as to which domain best represents the essential characteristics of the signal. A sequence of samples from a measuring device produces a time or spatial domain representation, whereas a discrete Fourier transform produces the frequency domain information, that is the frequency spectrum. Autocorrelation is defined as the cross-correlation of the signal with itself over varying intervals of time or space.3. Signal samplingMain article: Sampling (signal processing)With the increasing use of computers the usage of and need for digital signal processing has increased. In order to use an analog signal on a computer it must be digitized with an analog-to-digital converter. Sampling is usually carried out in two stages, discretization and quantization. In the discretization stage, the space of signals is partitioned into equivalence classes and quantization is carried out by replacing the signal with representative signal of the corresponding equivalence class. In the quantization stage the representative signal values are approximated by values from a finite set.The Nyquist–Shannon sampling theorem states that a signal can be exactly reconstructed from its samples if the sampling frequency is greater than twice the highest frequency of the signal; but requires an infinite number of samples . In practice, the sampling frequency is often significantly more than twice that required by the signal's limited bandwidth.A digital-to-analog converter is used to convert the digital signal back to analog. The use of a digital computer is a key ingredient in digital control systems. 4. Time and space domainsMain article: Time domainThe most common processing approach in the time or space domain is enhancement of the input signal through a method called filtering. Digital filtering generally consists of some linear transformation of a number of surrounding samples around the current sample of the input or output signal. There are various ways to characterize filters; for example:∙ A "linear" filter is a linear transformation of input samples; other filters are "non-linear". Linear filters satisfy the superposition condition, i.e. if an input is a weighted linear combination of different signals, the output is an equally weighted linear combination of the corresponding output signals.∙ A "causal" filter uses only previous samples of the input or output signals; while a "non-causal" filter uses future input samples. A non-causal filter can usually be changed into a causal filter by adding a delay to it.∙ A "time-invariant" filter has constant properties over time; other filters such as adaptive filters change in time.∙Some filters are "stable", others are "unstable". A stable filter produces an output that converges to a constant value with time, or remains bounded within a finite interval. An unstable filter can produce an output that grows without bounds, with bounded or even zero input.∙ A "finite impulse response" (FIR) filter uses only the input signals, while an "infinite impulse response" filter (IIR) uses both the input signal and previous samples ofthe output signal. FIR filters are always stable, while IIR filters may be unstable.Filters can be represented by block diagrams which can then be used to derive a sample processing algorithm to implement the filter using hardware instructions. A filter may also be described as a difference equation, a collection of zeroes and poles or, if it is an FIR filter, an impulse response or step response.The output of a digital filter to any given input may be calculated by convolving the input signal with the impulse response.5. Frequency domainMain article: Frequency domainSignals are converted from time or space domain to the frequency domain usually through the Fourier transform. The Fourier transform converts the signal information to a magnitude and phase component of each frequency. Often the Fourier transform is converted to the power spectrum, which is the magnitude of each frequency component squared.The most common purpose for analysis of signals in the frequency domain is analysis of signal properties. The engineer can study the spectrum todetermine which frequencies are present in the input signal and which are missing.In addition to frequency information, phase information is often needed. This can be obtained from the Fourier transform. With some applications, how the phase varies with frequency can be a significant consideration.Filtering, particularly in non-realtime work can also be achieved by converting to the frequency domain, applying the filter and then converting back to the time domain. This is a fast, O(n log n) operation, and can give essentially any filter shape including excellent approximations to brickwall filters.There are some commonly used frequency domain transformations. For example, the cepstrum converts a signal to the frequency domain through Fourier transform, takes the logarithm, then applies another Fourier transform. This emphasizes the frequency components with smaller magnitude while retaining the order of magnitudes of frequency components.Frequency domain analysis is also called spectrum- or spectral analysis. 6. Z-domain analysisWhereas analog filters are usually analysed on the s-plane; digital filters are analysed on the z-plane or z-domain in terms of z-transforms.Most filters can be described in Z-domain (a complex number superset of the frequency domain) by their transfer functions. A filter may be analysed in the z-domain by its characteristic collection of zeroes and poles.7. ApplicationsThe main applications of DSP are audio signal processing, audio compression, digital image processing, video compression, speech processing, speech recognition, digital communications, RADAR, SONAR, seismology, and biomedicine. Specific examples are speech compression and transmission in digital mobile phones, room matching equalization of sound in Hifi and sound reinforcement applications, weather forecasting, economic forecasting, seismic data processing, analysis and control of industrial processes, computer-generated animations in movies, medical imaging such as CAT scans and MRI, MP3 compression, image manipulation, high fidelity loudspeaker crossovers and equalization, and audio effects for use with electric guitar amplifiers8. ImplementationDigital signal processing is often implemented using specialised microprocessors such as the DSP56000, the TMS320, or the SHARC. These often process data using fixed-point arithmetic, although some versions are available which use floating point arithmetic and are more powerful. For faster applications FPGAs[3] might be used. Beginning in 2007, multicore implementations of DSPs have started to emerge from companies including Freescale and Stream Processors, Inc. For faster applications with vast usage, ASICs might be designed specifically. For slow applications, a traditional slower processor such as a microcontroller may be adequate. Also a growing number of DSP applications are now being implemented on Embedded Systems using powerful PCs with a Multi-core processor.(翻译)信号处理信号处理是电气工程与应用数学领域,在离散的或连续时间域处理和分析信号,以对这些信号进行所需的有用的处理。
最全电子行业术语英文翻译

最全电子行业术语英文翻译本文档收集了电子行业中最常见的术语及其英文翻译,以帮助读者更好地理解和使用这些术语。
1. 常见术语及英文翻译- 电子设备 (Electronic device)- 半导体 (Semiconductor)- 集成电路 (Integrated circuit)- 电路板 (Circuit board)- 芯片 (Microchip)- 电 (Capacitor)- 电阻器 (Resistor)- 电感器 (Inductor)- 发光二极管 (Light-emitting diode)- 二极管 (Diode)- 可编程逻辑门阵列 (Programmable logic gate array)- 可编程逻辑控制器 (Programmable logic controller)- 集成封装 (Integrated packaging)- 数字信号处理 (Digital signal processing) - 触摸屏 (Touchscreen)- 无线充电 (Wireless charging)- 人工智能 (Artificial intelligence)- 物联网 (Internet of Things)- 虚拟现实 (Virtual reality)- 增强现实 (Augmented reality)- 机器研究 (Machine learning)2. 其他相关术语- 电池 (Battery)- 蓝牙 (Bluetooth)- Wi-Fi (Wi-Fi)- 供应链管理 (Supply chain management) - 电子支付 (Electronic payment)- 信息安全 (Information security)- 数据隐私 (Data privacy)- 用户界面 (User interface)- 数据存储 (Data storage)- 硬件 (Hardware)- 软件 (Software)- 网络安全 (Network security)- 数据备份 (Data backup)- 电子签名 (Electronic signature)- 电子邮箱 (Email)- 数据恢复 (Data recovery)- 电子证书 (Digital certificate)- 电子表格 (Spreadsheet)- 数据分析 (Data analysis)- 电子文档 (Electronic document)- 云存储 (Cloud storage)请注意,本文档收集的是最常见的电子行业术语及其英文翻译,如果有其他术语需要翻译或有任何疑问,请随时与我联系。
电工翻译词汇D2

电工翻译词汇D235digital feedback system,数字反馈系统digital filter,数字滤波器digital fluxmeter,数字磁通表digital frequency meter,数字频率表digital information processing system,数字信息处理系统digital input,数字输入digital integrating fluxmeter,数字积分式磁通表digital logging instrument,数字测井仪digital magnetic tape record type strong-motion instrument, 数字磁带记录强震仪 digitalmagnetic telluro sounding instrument,数字大地电磁测深仪digital measuring instrument,数字式测量仪器仪表digital multimeter,数字万用表;数字复用表digital ohmmeter,数字电阻表digital ouput,数字输出digital phase meter,数字相位表digital position transmitter,数字式位置发送器digital positioner,数字式定位器digital power driver,数字功率表digital pressure gauge,数字压力表digital readout,数字读出digital representation of a physical quantity,物理量的数字表示digital seismic recoridng system,数字地震仪digital signal,数字信号digital signal analyzer,数字信号分析仪digital signal processing,数字信号处理digital simulation,数字仿真digital simulation computer,数字仿真计算机digital strain indicator,数字应变仪digital system,数字系统digital telemetering system,数字遥测系统digital transducer[sensor],数字传感器digital valve,数字阀digital voltmeter,数字电压表digital-analog conversion,楼模转换(digital-analog)hybrid computer,(数字模拟)混合计算机digital-analog simulator,数字模拟仿真器digital-analogue converter;D/A converter,数-模转换器;D/A 转换器digitalization error,数字化误差digitization,数字化digitization error,数字化误差digitizer,数字化仪dilatometry,膨胀法diluent gas,稀释气dilution factor,稀释因数36dilution methods,稀释法dilution ratio[rate],稀释比[率]dimension,尺度dimension transducer[semsor],尺度传感器Dines anemometer,达因风速表diopter,视度dip logger,地层倾角测井仪direct acting instrument,直接作用仪表direct acting recording instrument,直流作用记录仪direct action,正作用direct action solenoid valve,直动式电磁阀direct actuator,正作用执行机构direct-comparison method of measurement,直接比较测量法direct control layer,直接控制层direct-current linear variable differential transformer(DC-DC LVDT), 直流差动变压器 directdigital control station ,直接数字控制站direct digital control,直接数字控制direct heated type thermistor,直热式热敏电阻器direct-imaging mass analyser,直接成象质量分析仪direct injection burner,直接注入燃烧器direct injector,直流进样器direct method of measurement,直接测量法direct mounting gauge,直接安装压力表direct-operated regulator,直接作用式调节阀;自力式调节阀direct probe inlet,直接探头进样direct reading current meter,直读式海流计direct reading instrument,直读式仪器direct record strong-motion instrument,直接记录式强震仪direct resistance heating,直接电阻加热direction focusing,方向聚焦direction indicator,中心指示器direction mark meter,方位标仪directional frequency response of microphone,传声器指向性频率响应directional pattern of microphone,传声器指向性图案directivity,指向性directivity index of microphone,传声器指向性指数directly controlled system,直接被控系统directly controlled variable,直接被控变量director,指挥站disappearing-filament optical pyrometer,隐丝式光学高温计disc,阀板disc plug,盘形阀芯disc recorder,圆盘(形)记录仪discharge coefficient,流出系数37discharge lamp,放电灯discontinuous control,不连续控制discontinuous control system,不连续控制系统discontinuous simultaneous techniques,间歇联用技术;不连续同时串用技术discrete control system,离散控制系统discrete signal,离散信号discrete system model,离散系统模型discrete system simulation,离散系统仿真discrete system simulation language,离散系统仿真语言discriminant function,判别函数discrimination,鉴别力discrimination threshold,鉴别力阀diskette,软磁盘dispersion dose,散射剂量dispersion power,色散本领dispersive crystal,分光晶体dispersive infra-red gas analyzer,色散红外线气体分析器displacement,位移displacement divelopment,顶替展开法displacement pickup,位移传感器displacement transducer[sensor],位移传感器displacement,velocity and acceleration shock response spectrum, 位移、速度和加速度冲击响应谱display attribute,显示属性display console,显示控制台display device,显示器;显示设备display element,显示元件display unit,显示单元dissipation constant,耗散常数dissipation power,耗散功率dissolved oxygen analyzer,溶解氧分析器dissolved oxygen analyzer for seawater,海水溶解氧测定仪dissolved oxygen of seawater,海水中的溶解氧distance amplitude compensation,距离振幅补偿distance amplitude curve,距离振幅曲线distance constant,距离常数distance factor,距离系数distance marder,距离刻度distance meter,测距仪distance of centre of gravity,重心距distorted peak,畸峰distortion,失真;畸变distributed computer-control SDAS,分布式遥测型数字地震仪distributed computer control system, 分散型计算机控制系统;分布式计算机控制系统38distributed control,分散控制;分布控制distributed control system,分散型控制系统;分布式控制系统distributed data base,分布式数据库distributed intelligence,分散智能 distributed networkm,分布式网络distributed parameter control system,分散[分布]能数控制系统distributed telemetry SDAS,分布式遥测型数字地震仪distribution temperature,分布温度disturbance,扰动dither,颤振dithering,颤动diverging three way valve,三通分流阀diverter,换向器diving bell,潜水钟document.文件;文献document.tion,文件管理;文件集domestic package,内销包装dominant frequency,优势频率;主频率Doppler current meter,多普勒海流计Doppler effect,多普勒效应Doppler flowmeter,多普勒流量计Doppler radar,多普勒雷达Doppler sonar,多普勒声纳dose,剂量dose rate,剂量率dose rate meter,剂量率计dosementer,剂量计dot matrix printer,点阵式打印机dot printer,点阵印刷机;点阵打印机dotted line recorder,断续线记录仪dotting time,打点时间double acting positioner,双作用定位器double-beam mass spectrometer,双束质谱计double beam spectrum radiator,双光束光谱福射计double bounce technique,二次反射法double collectors,双接收器double-cone viscometer,双锥粘度计double crystal probe,双振子探头double-dry calorimeter,双干式热量计double-focusing mass spectroscope,双聚焦质谱仪器double-focus X-ray tube,双焦点X 射线管double focusing,双聚焦double focusing analyzer,双聚焦分析器double focusing at all masses,全质量双聚焦double-image tacheometer,双像速测仪。
数字信号处理中的英文缩写

数字信号处理中的英文缩写在数字信号处理领域中,有许多常用的英文缩写,以下是一些常见的缩写及其含义:1. DSP:数字信号处理(Digital Signal Processing)2. FFT:快速傅里叶变换(Fast Fourier Transform)3. FIR:有限脉冲响应(Finite Impulse Response)4. IIR:无限脉冲响应(Infinite Impulse Response)5. DFT:离散傅里叶变换(Discrete Fourier Transform)6. IDFT:离散傅里叶逆变换(Inverse Discrete Fourier Transform)7. ADC:模数转换器(Analog-to-Digital Converter)8. DAC:数模转换器(Digital-to-Analog Converter)9. LTI:线性时不变(Linear Time-Invariant)10. SNR:信噪比(Signal-to-Noise Ratio)11. MSE:均方误差(Mean Squared Error)12. PDF:概率密度函数(Probability Density Function)13. CDF:累积分布函数(Cumulative Distribution Function)14. PSD:功率谱密度(Power Spectral Density)15. FIR filter:有限脉冲响应滤波器16. IIR filter:无限脉冲响应滤波器17. AWGN:加性白噪声(Additive White Gaussian Noise)18. QAM:正交振幅调制(Quadrature Amplitude Modulation)19. BPSK:二进制相移键控(Binary Phase-Shift Keying)20. FSK:频移键控(Frequency-Shift Keying)这些缩写在数字信号处理的理论、算法、实现中都有广泛应用,了解这些缩写有助于更好地理解和掌握数字信号处理相关知识。
DSP专业名词术语和缩写

noise reduction降噪
168
additive noise加性噪声
169
compromise折衷
170
NRR (noise reduction ratio)降噪抑制比
171
SNR (signal-to-noise ratio)信噪比
172
zero-mean white Gaussian noise零均值高斯白噪声
154
digital waveform generator数字波形产生器
155
periodic square wave周期方波
156
sinusoidal generator正弦波产生器
157
computational overhead额外的计算开销
158
exponentially decaying sinusoid包络按指数衰减的正弦波
201
twiddle factor旋转因子
202
modulo-N模N
203
periodic extention周期延拓
204
computational cost计算代价
205
unitary matrix酉阵
2
FFT (fast Fourier transform )快速傅立叶变换
126
direct form直接型
127
difference equation差分方程
128
IIR filter无限长单位脉冲响应滤波器
129
FIR filter有限长单位脉冲响应滤波器
130
adder加法器
131
multiplier乘法器
132
数字信号处理英文翻译

英文原文The simulation and the realization of the digital filter With the information age and the advent of the digital world, digital signal processing has become one of today's most important disciplines and door technology. Digital signal processing in communications, voice, images, automatic control, radar, military, aerospace, medical and household appliances, and many other fields widely applied. In the digital signal processing applications, the digital filter is important and has been widely applied.1、figures Unit on :Analog and digital filtersIn signal processing, the function of a filter is to remove unwanted parts of the signal, such as random noise, or to extract useful parts of the signal, such as the components lying within a certain frequency range.There are two main kinds of filter, analog and digital. They are quite different in their physical makeup and in how they work. An analog filter uses analog electronic circuits made up from components such as resistors, capacitors and op amps to produce the required filtering effect. Such filter circuits are widely used in such applications as noise reduction, video signal enhancement, graphic equalisers in hi-fi systems, and many other areas. There are well-established standard techniques for designing an analog filter circuit for a given requirement. At all stages, the signal being filtered is an electrical voltage or current which is the direct analogue of the physical quantity (e.g. a sound or video signal or transducer output) involved. A digital filter uses a digital processor to perform numerical calculations on sampled values of the signal. The processor may be a general-purpose computer such as a PC, or a specialised DSP (Digital Signal Processor) chip. The analog input signal must first be sampled and digitised using an ADC (analog to digital converter). The resulting binary numbers, representing successive sampled values of the input signal, are transferred to the processor, which carries out numerical calculations on them. These calculations typically involve multiplying the input values by constants and adding the products together. If necessary, the results of these calculations, which now represent sampled values of the filtered signal, are output through a DAC (digital to analog converter) to convert the signal back to analog form.Note that in a digital filter, the signal is represented by a sequence of numbers, rather than a voltage or current.Unit refers to the input signals used to filter hardware or software. If the filter input, output signals are separated, they are bound to respond to the impact of the Unit is separated, such as digital filters filter definition. Digital filter function, which was to import sequences X transformation into export operations through a series Y.According to figures filter function 24-hour live response characteristics, digital filters can be divided into two, namely, unlimited long live long live the corresponding IIR filter and the limited response to FIR filters. IIR filters have the advantage of the digital filter design can use simulation results, and simulation filter design of a large number of tables may facilitate simple. It is the shortcomings of the nonlinear phase; Linear phase if required, will use the entire network phase-correction. Image processing and transmission of data collection is required with linear phase filters identity. And FIR linear phase digital filter to achieve, but an arbitrary margin characteristics. Impact from the digital filter response of the units can be divided into two broad categories : the impact of the limited response (FIR) filters, and unlimited number of shocks to (IIR) digital filters.FIR filters can be strictly linear phase, but because the system FIR filter function extremity fixed at the original point, it can only use the higher number of bands to achieve their high selectivity for the same filter design indicators FIR filter called band than a few high-IIR 5-10 times, the cost is higher, Signal delay is also larger. But if the same linear phase, IIR filters must be network-wide calibration phase, the same section also increase the number of filters and network complexity. FIR filters can be used to achieve non-Digui way, not in a limited precision of a shock, and into the homes and quantitative factors of uncertainty arising from the impact of errors than IIR filter small number, and FIR filter can be used FFT algorithms, the computational speed. But unlike IIR filter can filter through the simulation results, there is no ready-made formula FIR filter must use computer-aided design software (such as MATLAB) to calculate. So, a broader application of FIR filters, and IIR filters are not very strict requirements on occasions.2、MATLAB introducedMATLAB is a matrix laboratory (Matrix Laboratory) is intended. In addition to anexcellent value calculation capability, it also provides professional symbols terms, word processing, visualization modeling, simulation and real-time control functions. MATLAB as the world's top mathematical software applications, with a strong engineering computing, algorithms research, engineering drawings, applications development, data analysis and dynamic simulation, and other functions, in aerospace, mechanical manufacturing and construction fields playing an increasingly important role. And the C language function rich, the use of flexibility, high-efficiency goals procedures. High language both advantages as well as low level language features. Therefore, C language is the most widely used programming language. Although MATLAB is a complete, fully functional programming environment, but in some cases, data and procedures with the external environment of the world is very necessary and useful. Filter design using Matlab, could be adjusted with the design requirements and filter characteristics of the parameters, visual simple, greatly reducing the workload for the filter design optimization.In the electricity system protection and secondary computer control, many signal processing and analysis are based on are certain types Yeroskipou and the second harmonics of the system voltage and current signals (especially at D process), are mixed with a variety of complex components, the filter has been installed power system during the critical components. Current computer protection and the introduction of two digital signal processing software main filter. Digital filter design using traditional cumbersome formula, the need to change the parameters after recalculation, especially in high filters, filter design workload. Uses MATLAB signal processing boxes can achieve rapid and effective digital filter design and simulation.MATLAB is the basic unit of data matrix, with its directives Biaodashi mathematics, engineering, commonly used form is very similar, it is used to solve a problem than in MATLAB C, Fortran and other languages End precision much the same thing. The popular MATLAB 5.3/Simulink3.0 including hundreds of internal function with the main pack and 30 types of tool kits (Toolbox). kits can be divided into functional tool kits and disciplines toolkit. MATLAB tool kit used to expand the functional symbols terms, visualization simulation modelling, word processing and real-time control functions. professional disciplines toolkit is a stronger tool kits, tool kits control, signal processing tool kit, tool kits, etc. belonging to such communicationsMATLAB users to open widely welcomed. In addition to the internal function, all thepackages MATLAB tool kits are readable document and the document could be amended, modified or users through Yuanchengxu the construction of new procedures to prepare themselves for kits.3、Digital filter designDigital filter design of the basic requirementsDigital filter design must go through three steps :(1) Identification of indicators : In the design of a filter, there must be some indicators. These indicators should be determined on the basis of the application. In many practical applications, digital filters are often used to achieve the frequency operation. Therefore, indicators in the form of general jurisdiction given frequency range and phase response. Margins key indicators given in two ways. The first is absolute indicators. It provides a function to respond to the demands of the general application of FIR filter design. The second indicator is the relative indicators. Its value in the form of answers to decibels. In engineering practice, the most popular of such indicators. For phase response indicators forms, usually in the hope that the system with a linear phase frequency bands human. Using linear phase filter design with the following response to the indicators strengths:①it only contains a few algorithms, no plural operations;②there is delay distortion, only a fixed amount of delay; ③the filter length N (number of bands for N-1), the volume calculation for N/2 magnitude.(2) Model approach : Once identified indicators can use a previous study of the basic principles and relationships, a filter model to be closer to the target system.(3) Achieved : the results of the above two filters, usually by differential equations, system function or pulse response to describe. According to this description of hardware or software used to achieve it.4、Introduced FPGAProgrammable logic device is a generic logic can use a variety of chips, which is to achieve ASIC ASIC (Application Specific Integrated Circuit) semi-customized device, Its emergence and development of electronic systems designers use CAD tools to design their own laboratory in the ASIC device. Especially FPGA (Field Programmable Gate Array) generated and development, as a microprocessor, memory, the figures for electronic system design and set a new industry standard (that is based on standard product sales catalogue in the market to buy).Is a digital system for microprocessors, memories, FPGA or three standard building blocks constitute their integration direction.Digital circuit design using FPGA devices, can not only simplify the design process and can reduce the size and cost of the entire system, increasing system reliability. They do not need to spend the traditional sense a lot of time and effort required to create integrated circuits, to avoid the investment risk and become the fastest-growing industries of electronic devices group. Digital circuit design system FPGA devices using the following main advantages(1)Design flexibleUse FPGA devices may not in the standard series device logic functional limitations. And changes in system design and the use of logic in any one stage of the process, and only through the use of re-programming the FPGA device can be completed, the system design provides for great flexibility.(2) Increased functional densityFunctional density in a given space refers to the number of functional integration logic. Programmable logic chip components doors several high, a FPGA can replace several films, film scores or even hundreds of small-scale digital IC chip illustrated in the film. FPGA devices using the chip to use digital systems in small numbers, thus reducing the number of chips used to reduce the number of printed size and printed, and will ultimately lead to a reduction in the overall size of the system.(3) Improve reliabilityPrinting plates and reduce the number of chips, not only can reduce system size, but it greatly enhanced system reliability. A higher degree of integration than systems in many low-standard integration components for the design of the same system, with much higher reliability. FPGA device used to reduce the number of chips required to achieve the system in the number printed on the cord and joints are reduced, the reliability of the system can be improved.(4) Shortening the design cycleAs FPGA devices and the programmable flexibility, use it to design a system for longer than traditional methods greatly shortened. FPGA device master degrees high, use printed circuit layout wiring simple. At the same time, success in the prototype design, the development of advanced tools, a high degree of automation, their logic is very simple changes quickly.Therefore, the use of FPGA devices can significantly shorten the design cycle system, and speed up the pace of product into the market, improving product competitiveness.(5) Work fastFPGA/CPLD devices work fast, generally can reach several original Hertz, far larger than the DSP device. At the same time, the use of FPGA devices, the system needed to achieve circuitclasses and small, and thus the pace of work of the entire system will be improved.(6)Increased system performance confidentialityFPGA is the English abbreviation Field of Programmable Gate Array for the site programmable gate array, which is in Pal, Gal, Epld, programmable device basis to further develop the product. It is as ASIC (ASIC) in the field of a semi-customized circuit and the emergence of both a customized solution to the shortage circuit, but overcome the original programmable devices doors circuit few limited shortcomings.FPGA logic module array adopted home (Logic Cell Array), a new concept of internal logic modules may include CLB (Configurable Logic Block), export import module IOB (Input Output Block) and internal links (Interconnect) 3. FPGA basic features are :(1) Using FPGA ASIC design ASIC using FPGA circuits, the chip can be used,while users do not need to vote films production.(2) FPGA do other customized or semi-customized ASIC circuits throughout the Chinese specimen films.3) FPGA internal capability and rich I/O Yinjue.4) FPGA is the ASIC design cycle, the shortest circuit, the lowest development costs, risks among the smallest device5) FPGA using high-speed Chmos crafts, low consumption, with CMOS, TTL low-power compatibleIt can be said that the FPGA chip is for small-scale systems to improve system integration, reliability one of the bestCurrently FPGA many varieties, the Revenue software series, TI companies TPC series, the fiex ALTERA company seriesFPGA is stored in films from the internal RAM procedures for the establishment of the state of its work, therefore, need to programmed the internal Ram. Depending on the differentconfiguration, users can use a different programming methodsPlus electricity, FPGA, EPROM chips will be read into the film, programming RAM中data, configuration is completed, FPGA into working order. Diaodian, FPGA resume into white films, the internal logic of relations disappear, FPGA to repeated use. FPGA's programming is dedicated FPGA programming tool, using generic EPROM, prom programming device can. When the need to modify functional FPGA, EPROM can only change is. Thus, with a FPGA, different programming data to produce different circuit functions. Therefore, the use of FPGA very flexible.There are a variety of FPGA model : the main model for a parallel FPGA plus a EPROM manner; From the model can support a number of films FPGA; serial prom programming model could be used serial prom FPGA programming FPGA; The external model can be engineered as microprocessors from its programming microprocessors.Verilog HDL is a hardware description language for the algorithm level, doors at the level of abstract level to switch-level digital system design modelling. Modelling of the target figure by the complexity of the system can be something simple doors and integrity of electronic digital systems. Digital system to the levels described, and in the same manner described in Hin-time series modelling.Verilog HDL language with the following description of capacity : design behaviour characteristics, design data flow characteristics, composition and structure designed to control and contain the transmission and waveform design a certification mechanism. All this with the use of a modelling language. In addition, Verilog HDL language programming language interface provided by the interface in simulation, design certification from the external design of the visit, including specific simulation control and operation.Verilog HDL language grammar is not only a definition, but the definition of each grammar structure are clear simulation, simulation exercises. Therefore, the use of such language to use Verilog simulation models prepared by a certification. From the C programming language, the language inherited multiple operating sites and structures. Verilog HDL provides modelling capacity expansion, many of the initial expansion would be difficult to understand. However, the core subsets of Verilog HDL language very easy to learn and use, which is sufficient for most modelling applications. Of course, the integrity of the hardware description language is the most complex chips from the integrity of the electronic systems described.5、In troduction of DSPToday, DSP is w idely used in the modern techno logy and it has been the key part of many p roducts and p layed more and mo re impo rtant ro le in our daily life.Recent ly, Northw estern Po lytechnica lUniversity Aviation Microelect ronic Center has comp leted the design of digital signal signal p rocesso r co re NDSP25, w h ich is aim ing at TM S320C25 digital signal p rocesso r of Texas Inst rument TM S320 series. By using top 2dow n design flow , NDSP25 is compat ible w ith inst ruct ion and interface t im ing of TM S320C25.Digital signal processors (DSP) is a fit for real-time digital signal processing for high-speed dedicated processors, the main variety used for real-time digital signal processing to achieve rapid algorithms. In today's digital age background, the DSP has become the communications, computer, and consumer electronics products, and other fields based device.Digital signal processors and digital signal processing is inseparably, we usually say "DSP" can also mean the digital signal processing (Digital Signal Processing), is that in this digital signal processors Lane. Digital signal processing is a cover many disciplines applied to many areas and disciplines, refers to the use of computers or specialized processing equipment, the signals in digital form for the collection, conversion, recovery, valuation, enhancement, compression, identification, processing, the signals are compliant form. Digital signal processors for digital signal processing devices, it is accompanied by a digital signal processing to produce. DSP development process is broadly divided into three phases : the 20th century to the 1970s theory that the 1980s and 1990s for the development of products. Before the emergence of the digital signal processing in the DSP can only rely on microprocessors (MPU) to complete. However, the advantage of lower high-speed real-time processing can not meet the requirements. Therefore, until the 1970s, a talent made based DSP theory and algorithms. With LSI technology development in 1982 was the first recipient of the world gave birth to the DSP chip. Years later, the second generation based on CMOS工艺DSP chips have emerged. The late 1980s, the advent of the third generation of DSP chips. DSP is the fastest-growing 1990s, there have been four successive five-generation and the generation DSP devices. After 20 years of development, the application of DSP products has been extended to people's learning, work and all aspects of life and gradually become electronics products determinants.中文翻译数字滤波器的仿真与实现随着信息时代和数字世界的到来,数字信号处理已成为当今一门极其重要的学科和技术领域。
DSP单词整理

Chapter 1 Signal Processing 信号处理classification 分类variable 变量vector 矢量scalar 标量multichannel 多通道multidimensional 多维的,多面的amplitude 幅度waveform 波形continuous-time 连续时间discrete-time 离散时间analog signal 模拟信号digital signal 数字信号normalize 使恢复正常deterministic signal 确定信号random signal 随机信号sample 抽样numerical 数字的quantized 量子化的(数字转化)time-domain 时域frequency-domain 频域elementary 基本的implement 实现amplification 放大scaling 加权delay 延时addition 相加gain 增益attenuation 衰减advance 超前product 乘积integration 积分differentiation 微分filter 滤波器lowpass filter 低通滤波器highpass filter 高通滤波器bandpass filter 带通滤波器bandstop filter 带阻滤波器block 屏蔽passband 通带stopband 阻带quantized boxcar signal 量化阶梯信号linear 线性time-invariant 时不变cutoff-frequency 截止频率Chapter 2algorithm 算法horizontal 水平面vertical 垂直面consecutive samples 相邻样本sampling interval 抽样间隔sampling period 抽样周期sampling frequency 抽样频率real/complex sequence 实数/虚数序列conjugate 共轭analog-to-digital converter 模数转换器sample-and-hold circuit 采样保持电路equivalent 等效的infinite/finite 无限的/有限的finite/infinite-length 有限/无限长finite-extent 有限范围finite-duration 有限时宽causal/anticausal sequence 因果序列/非因果序列reversal 反转even/odd sequence 偶/奇序列conjugate-symmetric/ conjugate-antisymmetric 共轭对称/共轭非对称periodic/aperiodic 周期性的/非周期性的energy signal 能量信号power signal 功率信号average power 平均功率appending with zeros 补零bounded 有界的bounded-input,bounded-output 有界输入有界输出(BIBO)left-sided/right-sided/two-sided sequence 左边/右边/双边序列time-shifting operation 时移delaying operation 延时运算advancing operation 超前运算unit delay 单位延时time-reversal operation 时间反转运算folding operation 折叠运算absolutely summable 绝对可和square-summable 平方可和N-periodic extension N倍周期延拓unit sample sequence 单位抽样序列unit step sequence 单位阶跃序列exponential sequence 指数序列complex exponential sequence 复指数序列discrete-time impulse 离散时间冲激in-phase component 同相分量quadrature component 正交分量real sinusoidal sequence 实正弦序列sinusoidal envelope 正弦包络angular frequency 角频率decomposition 分解phase 相位radian 弧度exponential sequence 指数序列fundamental period 基本周期arbitrary sequence 任意序列Shift-Invariant System 时不变系统Impulse Response 冲激响应Step Response 阶跃响应Linear system 线性系统Stable system 稳定系统commutative 交换律associative 结合律distributive 分配率Superposition 叠加accumulator 累加convolution 卷积property 性质cascade connection 级联parallel connection 并联constant 常数coefficient 系数precisely 精确地Chapter 3Discrete-Time-Fourier Transform 离散时间傅里叶变换Fourier integral 傅里叶积分Finite discontinuities 有限个不连续点spectrum 谱magnitude/phase spectrum 幅度/相位谱finite interval 有限区间absolutely integrable 绝对可积Energy Density Spectrum 能量密度谱Parseval’s relation 帕斯瓦尔定理Principal value 主值Frequency response 频率响应magnitude/phase response 幅度/相位响应gain/attenuation/loss function 增益/衰减/损耗函数band-limited 带限bandwidth 带宽integer 整数periodic impulse train 周期脉冲序列Frequency-Shifting 频移Modulation 调制eigenfunctions 特征值digital filer 数字滤波器Chapter 4Digital Processing of Continuous-Time Signals 连续时间信号的数字化处理aliasing 混叠anti-aliasing 反混叠reconstruction 重建sampling process 抽样过程Mathematical representation 数学表示ideal sampling model 理想抽样模型folding frequency 折叠频率recovery 恢复oversampling 过抽样undersampling 欠抽样critical sampling 临界抽样aliasing distortion 混叠失真passband 通带stopband 阻带passband edge frequency 通带截止频率stopband edge frequency 阻带截止频率Chapter 5Finite-Length Discrete Transforms 有限长离散变换Discrete Fourier transform 离散傅里叶变换Basis sequences 基本序列Inverse discrete Fourier transform 离散傅里叶逆变换frequency samples 频率样本circular Shift 圆周(循环)移位circular time-shifting operation 圆周时移运算circular frequency-shifting operation 圆周频移运算circular time-reversal operation 圆周时间反转运算modulo operation 模运算circular convolution 圆周(循环)卷积N-point circular convolution N点圆周(循环)卷积circulant matrix 圆周矩阵Chapter 6z-Transform Z变换unit circle 单位圆region of convergence(ROC)收敛域Rational z-transform 有理z变换Polynomial 多项式zero point 零点pole point 极点Inverse z-Transform z反变换Partial-Fraction Expansion 部分分式展开法residue 留数transfer function 传输函数system function 系统函数Chapter 8Digital Filter Structures 数字滤波器的结构IIR: Infinite Impulse Response 无限冲激响应FIR: Finite Impulse Response 有限冲激响应Block Diagram Representation 方框图表示Basic Building Blocks 基本结构单元Analysis of Block Diagrams 方框图的分析Delay-Free Loop 无延时回路Signal Flow-Graph 信号流图node 节点branch 支路addition 加法器multiplication 乘法器(增益)unit delay 单位延时Equivalent Structures 等效结构transpose operation 转置运算direct form 直接型cascade realizations 级联型parallel realizations 并联型linear-phase FIR structures 线性相位FIR滤波器结构allpass filter 全通滤波器Chapter 9IIR Digital Filter Design IIR数字滤波器设计Digital Filter Specifications 数字滤波器指标passband 通带stopband 阻带transition band 过渡带passband edge frequency 通带截止频率stopband edge frequency 阻带截止频率peak ripple values 峰波纹值peak passband ripple 峰值通带波纹minimum stopband attenuation 最小阻带衰减maximum passband attenuation 最大通带衰减selection of the Filter Type 滤波器类型的选择First-Order Butterworth lowpass filter 一阶巴特沃斯低通滤波器magnitude-squared response 幅度平方函数Scaling the Digital Transfer Function 缩放数字传输函数Bilinear Transformation method 双线性变换法Frequency warping 频率畸变Spectral Transformation 谱变换Chapter 10FIR Digital Filter Design FIR数字滤波器设计filter order 滤波器阶数window-based method 窗函数法lowpass filter 低通滤波器highpass filter 高通滤波器bandpass filter 带通滤波器bandstop filter 带阻滤波器differentiator 差分器Gibbs phenomenon 吉布斯效应rectangular window 矩形窗fixed window function 固定窗函数main lobe width 主瓣宽度relative sidelobe level 相对旁瓣级minimum-phase 最小相位Chapter 11DFT Algorithm Implementation DSP算法实现computation 计算fast Fourier transform(FFT) algorithms 快速傅里叶变换算法complex multiplications 复乘complex additions 复加Decimation-in-Time(DIT) FFT Algorithm 按时间抽取FFT算法butterfly computation 蝶形运算decomposition 分解in-place computation 同址计算(原位计算)twiddle factor 旋转因子bit-reversed order 倒位序Decimation-in-Frequency(DIF) FFT Algorithm 按频率抽取FFT算法Inverse DFT Computation 离散傅里叶逆变换计算。
数字信号处理词汇英文翻译

DFT (discrete Fourier transform)离散傅立叶变换
196
N-point DFT of a length L signal对L长信号做N点DFT
197
zero padding补零
198
biasing error偏移误差
199
rounding error舍入误差
200
matrix form矩阵形式
integrator积分器
88
DCgain直流增益
89
overlap-add-block convolution method重叠相加器
90
temporary临时的
91
adder加法器
92
multiplier相乘器
93
delay延迟器
94
tapped delay line抽头延迟器
95
differentiator微分器
78
difference equation差分卷积
79
recursive递归
80
even偶数
81
odd奇数
82
filter coefficient滤波器系数
83
diverge发散
84
antidiagonal反对角线
85
flip-and-slide翻转平移
86
input-off-state输出暂态
87
218
window method窗口法
219
linear phase线性相位
220
guaranteesability保证稳定性
221
lowpass低通
222
highpass高通
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
88
DCgain直流增益
89
overlap-add-block convolution method重叠相加器
90
temporary临时的
91
adder加法器
92
multiplier相乘器
93
delay延迟器
94
tapped delay line抽头延迟器
95
differentiator微分器
47
root mean square均方根
48
signal to noise ratio(SNR)信噪比
49
square wave方波
50
unipolar natural binary code单极性自然二进制码
51
bipolar offset binary code双极性偏移二进制码
52
bipolar two’s complement code双极性二的补码
167
noise reduction降噪
168
additive noise加性噪声
169
compromise折衷
170
NRR (noise reduction ratio)降噪抑制比
171
SNR (signal-to-noise ratio)信噪比
172
zero-mean white Gaussian noise零均值高斯白噪声
119
effective time constant有效时间常数
120
resonator谐振器
121
notch filter陷波滤波器
122
comb filter梳状滤波器
123
parametric equalizer参量均衡器
124
channel equalization信道均衡
125
deconvolution解卷积
134
numerator分子
135
denominator分母
136
polynomial多项式
137
coefficient系数
138
recursive term递归项
139
non-recursive term非递归项
140
negative负的
141
order滤波器的阶
142
internal state内部状态
195
DFT (discrete Fourier transform)离散傅立叶变换
196
N-point DFT of a length L signal对L长信号做N点DFT
197
zero padding补零
198
biasing error偏移误差
199
rounding error舍入误差
200
matrix form矩阵形式
190
physical frequency resolution物理频率分辨率
191
computational frequency resolution计算频率分辨率
192
resolvability condition可分辨条件
193
sharp spectral line尖锐的谱线
194
DTFT (discrete time Fourier transform)离散时间(序列)傅立叶变换
53
successive approximation A\D convertor逐次比较型模数转换器
54
full scale range满量程
55
uniform quantization均匀量化
56
quantization level量化等级
57
quantization width/resolution量化宽度/间隔
64
dynamic range动态范围
65
comparator比较器
66
register寄存器
67
feedback loop反馈环路
68
linear time-invariant system线形时不变系统
69
discrete-time system离散时间系统
70
finite impulse response有限长单位脉冲响应
182
rectangular window矩形窗
183
hamming window汉明窗
184
window function窗函数
185
frequency leakage频率泄露
186
mainlobe主瓣
187
sidelobe旁瓣
188
mainlobe width主瓣宽度
189
relative sidelobe level相对旁瓣水平
71
infinite impulse response无限长单位脉冲响应
72
block processing块处理
73
sample by sample processing逐个样本处理
74
internal state内部状态
75
linearity线性
76
stability稳定性
77
weighted average加权平均
150
complex conjugate pairs复共轭对
151
quantization effects in digital filters数字滤波器中的量化效应
152
roundoff error舍入误差
153
sample-by-sample processing algorithm逐个样本处理算法
154
digital waveform generator数字波形产生器
155
periodic square wave周期方波
156
sinusoidal generator正弦波产生器
157
computational overhead额外的计算开销
158
exponentially decaying sinusoid包络按指数衰减的正弦波
112
real valued coefficient实系数
113
complex conjugate pares复共轭对
114
transfer function传递函数
115
direct form直接型
116
parallel form并联型
117
canonical form正准型
118
transposed form转置型
16
impulse response冲激响应
17
convolution卷积
18
frequency response频率响应
19
steady state稳态
20
attenuate衰减
21
magnified放大
22
amplitude振幅
23
aliasing混叠
24
antaliasing profilers抗混叠预滤波器
25
symmetric相对的
26
distort误传
27
intersect相交
28
rotate旋转
29
clockwise顺时针
30
duration持续时间
31
periodically replication周期重复
32
nodulation调制
33
normalize归一化
34
lowpass band低通带
159
wavetable synthesis波表合成
160
periodic sequence周期序列
161
periodic waveform generator周期波形产生器
162
touch—tone全数字按键式
163
DTMF双音多频
164
echo回声
165
combfilter梳状滤波器
166
reverberator混响器
173
minimizing最小化
174
maximizing最大化
175
piece-wise linear分段线性
176
ECG心电图
177
Q-factor品质因子
178
time-windowing时域加窗
179
finite-duration有限长
180
sampling rate采样率
181
sampling time interval采样间隔
DSP专业名词术语和缩写ቤተ መጻሕፍቲ ባይዱ
我们需要100个专业词汇,这边共有250个,这个单词表是当年DSP老师给的。
1
samplin采样
2
quantization量化
3
reconstruction重建
4
ideal reconstruction理想重建
5
analog signal模拟信号
6
digital signal数字信号
78
difference equation差分卷积
79
recursive递归
80
even偶数
81
odd奇数
82
filter coefficient滤波器系数
83
diverge发散
84
antidiagonal反对角线
85
flip-and-slide翻转平移