tag 标签: error

相关博文
  • 热度 1
    2024-1-21 10:01
    360 次阅读|
    0 个评论
    这个问题是因为在编译OpenCV CUDA时,CMake无法识别Visual Studio生成器。你可以尝试以下方法解决这个问题: 1. 确保你已经安装了Visual Studio和相应的C++工作负载。你可以在Visual Studio安装程序中选择“使用C++的桌面开发”工作负载来安装。 2. 在运行CMake时,指定正确的生成器。例如,如果你使用的是Visual Studio 2019,你可以使用以下命令: ```bash cmake -G "Visual Studio 16 2019" -A x64 .. ``` 这里的`-G "Visual Studio 16 2019"`表示使用Visual Studio 2019作为生成器,`-A x64`表示生成64位的可执行文件。根据你的实际需求进行修改。 3. 如果问题仍然存在,尝试更新你的CMake版本。确保你的CMake版本与OpenCV CUDA兼容。你可以在CMake官网下载最新版本的CMake。
  • 热度 18
    2015-1-22 18:15
    2392 次阅读|
    0 个评论
    All data streams experience jitter, some of which is statistically random, so that means we must characterize it with statistics. In jitter analysis, random jitter (RJ) is often described as having a Gaussian distribution.   RJ is typically quantified as an rms value equal to σ of the Gaussian formula. Since Gaussian distributions are unbounded, a peak-to-peak value of RJ requires a measure of probability of bit errors, or BER (bit error ratio). For a typical specification of BER = 10 -12 , (1 error for every 10 12 bits) the peak-to-peak value of RJ is closely approximated by 14σ, where σ is one standard deviation.   Figure 1 shows a plot of the familiar Gaussian distribution. We are often concerned with probability in any given area of this bell curve. Table 1 shows the probability of events occurring in the peak and tail regions for different spans of σ.   Figure 1. Gaussian distribution.   Table 1. Probability of peak and tail areas vs. number of σ.   At ±6σ, we see that the probability of the tails is about two in a billion. For ±7σ, the probability of the tails is about 2.6 in a trillion, which is roughly how we came to use 14σ to bound RJ at BER = 10 -12 . Even though we frequently talk about probabilities of less than one in a trillion, few people actually have an intuitive grasp of such large/small numbers. I came across a very interesting example to illustrate Gaussian distributions using the distribution of height in American men.   The US has approximately 300 million people, out of whom approximately 100 million are non-acromegalic adult men (i.e., no abnormal pituitary problems affecting their height). The mean height of men in the US is about 5'9" with a standard deviation of 3". Knowing how Gaussian distributions work, we can estimate how many men are in each height bracket, shown below in Table 2.   Table 2. The probability of the height of men.   We see that about 68 million men are within ±1σ of the mean, which is between 5'6" and 6' tall. We refer to this range as average height. We think of men between 6' and 6'3" as being relatively tall, but there is still a large population of them, about 13.6 million or 13.6 percent. The numbers drop off very quickly for increasing heights, as expected.   What is interesting is that Gaussian statistics tell us that there should be no men in the US who are above 7'3" tall. But, many sports fans can immediately point out that Yao Ming is 7'6". Someone of Yao Ming's height is statistically unlikely in the normal height distribution of American men.   So, why is Yao Ming Chinese? Because the US does not have enough adult men to realize someone who is greater than 6σ in height! Instead, Yao Ming was born in China, where the current population of adult men is about 500 million, which is five times more likely to grow a 6σ person. Furthermore, the mean height of men in China is approximately 5'7", which makes Yao Ming's stature even more statistically rare!   Yao Ming, basketball player for the Houston Rockets (retired).   Many readers will quickly point out that India also has a population comparable to China's. Is there at least one Indian man who is 6σ above the mean in height? The answer is a resounding yes! Sunil Chaudhary currently claims to be the tallest living man in India at a height of 7’6", a number that neatly fits into our understanding of 6σ in Gaussian distributions.   So, in jitter analysis, when we are looking for that less-than-one-in-a-trillion event that determines our BER compliance, or when we test for violations with a PRBS31 (2 31 −1) pattern -- 2.4 billion bits long -- I like to tell people I'm searching for the "Yao Ming of jitter."   Daniel Chow
  • 热度 18
    2015-1-22 18:14
    1930 次阅读|
    0 个评论
    All data streams experience jitter, some of which is statistically random, meaning that we must characterize it with statistics. In jitter analysis, random jitter (RJ) is often described as having a Gaussian distribution.   RJ is typically quantified as an rms value equal to σ of the Gaussian formula. Since Gaussian distributions are unbounded, a peak-to-peak value of RJ requires a measure of probability of bit errors, or BER (bit error ratio). For a typical specification of BER = 10 -12 , (1 error for every 10 12 bits) the peak-to-peak value of RJ is closely approximated by 14σ, where σ is one standard deviation.   Daniel Chow   Figure 1 shows a plot of the familiar Gaussian distribution. We are often concerned with probability in any given area of this bell curve. Table 1 shows the probability of events occurring in the peak and tail regions for different spans of σ.   Figure 1. Gaussian distribution.   Table 1. Probability of peak and tail areas vs. number of σ.   At ±6σ, we see that the probability of the tails is about two in a billion. For ±7σ, the probability of the tails is about 2.6 in a trillion, which is roughly how we came to use 14σ to bound RJ at BER = 10 -12 . Even though we frequently talk about probabilities of less than one in a trillion, few people actually have an intuitive grasp of such large/small numbers. I came across a very interesting example to illustrate Gaussian distributions using the distribution of height in American men.   The US has approximately 300 million people, out of whom approximately 100 million are non-acromegalic adult men (i.e., no abnormal pituitary problems affecting their height). The mean height of men in the US is about 5'9" with a standard deviation of 3". Knowing how Gaussian distributions work, we can estimate how many men are in each height bracket, shown below in Table 2.   Table 2. The probability of the height of men.   We see that about 68 million men are within ±1σ of the mean, which is between 5'6" and 6' tall. We refer to this range as average height. We think of men between 6' and 6'3" as being relatively tall, but there is still a large population of them, about 13.6 million or 13.6 percent. The numbers drop off very quickly for increasing heights, as expected.   What is interesting is that Gaussian statistics tell us that there should be no men in the US who are above 7'3" tall. But, many sports fans can immediately point out that Yao Ming is 7'6". Someone of Yao Ming's height is statistically unlikely in the normal height distribution of American men.   So, why is Yao Ming Chinese? Because the US does not have enough adult men to realize someone who is greater than 6σ in height! Instead, Yao Ming was born in China, where the current population of adult men is about 500 million, which is five times more likely to grow a 6σ person. Furthermore, the mean height of men in China is approximately 5'7", which makes Yao Ming's stature even more statistically rare!   Yao Ming, basketball player for the Houston Rockets (retired).   Many readers will quickly point out that India also has a population comparable to China's. Is there at least one Indian man who is 6σ above the mean in height? The answer is a resounding yes! Sunil Chaudhary currently claims to be the tallest living man in India at a height of 7’6", a number that neatly fits into our understanding of 6σ in Gaussian distributions.   So, in jitter analysis, when we are looking for that less-than-one-in-a-trillion event that determines our BER compliance, or when we test for violations with a PRBS31 (2 31 −1) pattern -- 2.4 billion bits long -- I like to tell people I'm searching for the "Yao Ming of jitter."
  • 热度 26
    2015-1-21 19:00
    1572 次阅读|
    1 个评论
    Several days ago, when I started my truck after a night when the temperatures had dived to well below freezing, I noticed a warning light glaring at me balefully from the console.   Of course this couldn’t say something useful like "Check Engine." Instead, the message was presented in the form of an inscrutable icon, thereby forcing me to root through the 200+ manual skulking at the bottom of the glove compartment.   When I finally tracked these little rascals down (first the manual, then the icon), I discovered that the icon's raison d'être was to cryptically inform me that I needed to "Check Gauges." Who writes these manuals anyway? I mean, we're not talking about a vehicle that originated in some obscure part of the world -- this is a Dodge Ram truck, for goodness sake. I'm assuming it was built in the USA, so I have no idea why we appear to have commissioned a non-English speaker to write our documentation for us, but we digress...   I'm sure it goes without saying that I treated this warning of impending doom coolly and calmly as is my wont, with only a teensy-weensy whimper wending its way through my lips.     I remember hearing that helicopter pilots in the Korean War would resolve this sort of problem by throwing the errant warning light out of the window. Now, this may be a viable solution when you are scooting around thousands of feet up in the air with no one else around you, but the traffic here in Huntsville has gotten pretty hectic recently. This is only exacerbated by the fact that no one else around here seems to have the faintest clue what the indicators on their vehicles are for, but -- once again -- we digress...   I decided not to do anything hasty, so I continued on to work. When I started my truck again that evening, the warning icon was no longer illuminated. "O frabjous day!" I thought to myself, but my joy was short-lived because the little scamp returned to taunt me on the way into my office yesterday.   Thus it was that I stopped off at the Express Oil Change Service Center, which is about 1 mile or so away from my office. When the young lad approached my truck and asked me what was wrong, I pointed accusingly at the misbehaving warning light and he said "Ah, the Check Engine light, eh?" (I felt it would be churlish of me to correct him by informing him in haughty tones that this was, in fact, officially known as the "Check Gauges" indicator.)   So I left my truck with the sterling chaps at EOCSC and one of their merry band ran me into work. If the truth be told, I quickly forgot all about this, so I would have had something of a surprise when I exited the building in the evening and discovered an empty space where my truck should be. Fortunately, the guys at EOCSC called me in the late afternoon to tell me what they had discovered, which could be summed up in a nutshell as "nothing useful."   Apparently, they started off by connecting my truck to a diagnostic unit, which reported that one of my cylinders had been misfiring. Two obvious suspects were the spark plugs or the coil (or distributor or whatever -- I no longer recall exactly what they said). My understanding is that they swapped the leads to two of the cylinders (I didn’t know they could do that) and then drove the truck around for a while. This was supposed to inform them whether they should exchange the spark plugs or replace the coil.   Sad to relate, however, the warning light never came back on. When I returned to pick up my truck, I took out my wallet in dread anticipation of horrors to come. Instead, the guy behind the counter presented me with my keys and said "There's no charge." Somewhat foolishly, I responded "But I thought there was a diagnostic fee." He replied "But we didn’t diagnose anything." What could I say? You can’t argue with logic like that!   I do have to say that I find this attitude to be somewhat heartwarming in an age where a plumber will happily charge you a $50 service fee just to wipe his muddy feet on your front doormat. The upshot was that we both agreed that transient faults are the worse ones to have; that if I am really lucky the indicator will never return to haunt me; but that the next best thing would be for the indicator to go hard on, thereby allowing them to actually diagnose -- and correct -- the problem.   I know that when I'm diagnosing an issue in an embedded system, I much prefer a hard fault to a transient one. In the case of a hard error, it's almost like solving a mystery by using your intuitive skills to track the issue down to the hardware or the software, and to then keep on burrowing down until you stalk the little scallywag to its lair. When it comes to transient errors, however, it can be extremely frustrating to see them flicker in and out of existence. It's especially irritating when the act of applying your diagnostic tools causes the fault to evaporate, and for the little scoundrel to subsequently reappear as soon as you disengage your diagnostic devices.   I could tell you some stories... but I'd rather hear yours. Have you ever run across a truly tortuous transient error that caused you to gnash your teeth, rend your garb, and pull your hair out in frustration? If so, please share it in the comments below.
  • 热度 16
    2012-4-21 21:37
    1572 次阅读|
    0 个评论
      问题: 平台为 windows 7 32bit ultimate 。安装包为 镜像,使用 UltraISO 做虚拟光驱。 安装 VS 2005 和 VS 2010 均出现无法继续安装。 解决: 使用 Daemon Tool,即可解决无法安装的问题。但是安装 VS 2005 提示需要预装 windows XP SP2。所以最后装的 VS 2010。 总结: 实验室电脑使用XP SP3,所以可以装 VS 2005。而 win7 下装 VS 2010 较稳妥。
相关资源
  • 所需E币: 0
    时间: 2023-4-12 09:46
    大小: 2.67MB
    HumanReliabilityandErrorinTransportationSystems,B.S.Dhillon,Springer
  • 所需E币: 1
    时间: 2022-7-23 13:22
    大小: 1.11MB
    上传者: Argent
    Ultra3000SERCOSErrorCodeCaptureandHistory
  • 所需E币: 0
    时间: 2020-9-7 22:14
    大小: 140.76KB
    上传者: samewell
    PolynomialInterpolationErrorAnalysis
  • 所需E币: 3
    时间: 2019-12-27 20:47
    大小: 58.47KB
    上传者: 238112554_qq
    EasyDrive技术简化了ΔΣ模数转换器的驱动设计。该解决方案采用纯被动输入电流消除算法,而不需增加片上缓冲放大器的电流及由电流产生的误差。EasyDrive技术允许ΔΣ模数转换器直接连接高阻传感器、低通滤波器和输入旁路电容而不会降低直流性能。advertisement“EasyDrive”Delta-SigmaAnalog-to-DigitalConvertersCancelInputCurrentErrors……
  • 所需E币: 4
    时间: 2019-12-25 17:31
    大小: 189.81KB
    上传者: givh79_163.com
    ErrorDetection&RecoveryUsingCRCinAlteraFPGADevices……
  • 所需E币: 3
    时间: 2019-12-28 22:02
    大小: 69.84KB
    上传者: 二不过三
    ErrorsandErrorBudgetAnalysisinInstrumentationAmplifierApplications……
  • 所需E币: 4
    时间: 2019-12-28 22:02
    大小: 208.51KB
    上传者: 978461154_qq
    ReducingRFIRectificationErrorsinIn-AmpCircuits……
  • 所需E币: 4
    时间: 2019-12-25 15:23
    大小: 32.66KB
    上传者: 238112554_qq
    一份PS2鼠标输入输出数据规范资料PS/2ModeSpecificationOperatingmodeTherearefouroperatingmodesinPS/2mouse:A.ResetMode:Inthismodeaself-testisinitiatedduringpower-onorbyaResetcommand.Afterresetsignal,PS/2mousewillsend:1).CompletioncodeAA&IDcode00.2).Setdefault:samplingrate:100reports/snon-autospeed2dot/countdisableB.StreamMode:Themaximumrateoftransferistheprogrammedsamplerate.Datareportistransmittedif1).switchispressed2).movementhasbeendetectC.RemoteMode:DataistransmittedonlyinresponsetoaReadDatacommand.D.WrapMode:Anybyteofdatabythesystem,excepthexEC(R……
  • 所需E币: 3
    时间: 2020-1-6 12:42
    大小: 96.88KB
    上传者: 微风DS
    UsingParitytoDetectMemoryErrorsinStratixDevicesWhitePaper……
  • 所需E币: 4
    时间: 2019-12-24 22:34
    大小: 317.4KB
    上传者: 16245458_qq.com
    Abstract:Thisapplicationnoteanalysestheparametersthataffecttheerrorsinprecisiondigital-to-analogconverter(DAC)applications.Theanalysisfocusesonthefactorsintroducedbyboththedataconverterandthevoltagereference.Itdescribesthecalculationsrequiredtoselectthedataconverterandthereferencetomeetthesystem'stargetspecifications.Thecalculationsareavailableinaspreadsheet.Maxim>Designsupport>Appnotes>A/DandD/AConversion/SamplingCircuits>APP4300Maxim>Designsupport>Appnotes>GeneralEngineeringTopics>APP4300Maxim>Designsupport>Appnotes>MeasurementCircuits>APP4300Keywords:voltagereferences,voltagereference,DACreference,threeterminalreference,referenceaccuracy,DAC,digitaltoanalogconverter,DACdesignexamples,errorbudgetSep25,2008APPLICATIONNOTE4300CalculatingtheErrorBudgetinPrecisionDigital-to-AnalogConverter(DAC)ApplicationsBy:DavidFry,StrategicApplicationsEngineeringManagerAbstract:Thisapplicationnoteanalysestheparametersthataffecttheerr……
  • 所需E币: 4
    时间: 2019-12-24 22:31
    大小: 64.98KB
    上传者: 二不过三
    Abstract:Analog-to-digitalconverter(ADC)datasheetsandapplicationtypicallyrecommenddrivingtheirinputswithalowsourceimpedance.ThisapplicationnoteexplainsthepossibleeffectssuchasincreasedgainerroranddistortionwhenusinghighimpedancetodriveanADCwithoutabuffer.Maxim>AppNotes>A/DandD/ACONVERSION/SAMPLINGCIRCUITSKeywords:ADC,analogtodigitalconverter,voltagedivider,distortion,gainerror,highimpedance,lowMar25,2003impedance,samplingcapacitor,timeconstant,a/dconvertersAPPLICATIONNOTE1948AnalysisofADCSystemDistortionCausedbySourceResistanceAbstract:Analog-to-digitalconverter(ADC)datasheetsandapplicationtypicallyrecommenddrivingtheirinputswithalowsourceimpedance.ThisapplicationnoteexplainsthepossibleeffectssuchasincreasedgainerroranddistortionwhenusinghighimpedancetodriveanADCwithoutabuffer.Analog-to-digitalconverter(ADC)usershavebeeninstructedbyendlessdatasheetsandapplicationnotestodrivetheirADCswithalowsourceimpedance.However,thesei……
  • 所需E币: 4
    时间: 2019-12-24 22:30
    大小: 70.64KB
    上传者: 二不过三
    Abstract:Despitethepopularityofdigitaldevices,real-worldsignalsaretypicallyrepresentedbyanalogsignals.Digitalcontrolsystemsprocessanalogsignalsbyusingananalog-to-digitalconverter(ADC)toconvertanalogsignalstodigital.Conversionsbacktoanalogsignalsareaccomplishedusingadigital-to-analogconverter(DAC).MaximoffersacompletelineofprecisionDACsfrom8to16bits.ItisimportanttofindaDACthatmeetstherequirementsoftheapplication.Adesignengineerneedstolookatparameterssuchaslinearity,resolution,speed,andaccuracywhenselectingaDAC.Maxim>Designsupport>Appnotes>A/DandD/AConversion/SamplingCircuits>APP1055Keywords:DACs,digitalanalog,digitaltoanalogconverter,INL,DNL,linearity,gainerror,offseterror,control,PLC,actuatorsApr16,2002APPLICATIONNOTE1055Digital-to-AnalogConvertersArea"Bit"AnalogAbstract:Despitethepopularityofdigitaldevices,real-worldsignalsaretypicallyrepresentedbyanalogsignals.Digitalcontrolsystemsprocessanalogsignalsbyusingananalog-to-digitalconverter(ADC)toconvertanalogsignalstodigital.Conversionsbacktoanalogsignalsareaccomplishedusingadigital-to-analogconverter(DAC).Maximoffersacompleteli……
  • 所需E币: 4
    时间: 2019-12-24 22:30
    大小: 69.36KB
    上传者: quw431979_163.com
    Abstract:Thisarticleexplainsthearchitectureandoperationofpipelinedanalog-to-digitalconverters(ADCs).Itdiscusseskeyperformancecharacteristicssuchasarchitecture,latency,digitalerrorcorrection,componentaccuracy,anddigitalcalibration.ThearticlealsobrieflycomparespipelinesADCstootherdataconverterarchitectures.Maxim>AppNotes>A/DandD/ACONVERSION/SAMPLINGCIRCUITSBASESTATIONS/WIRELESSINFRASTRUCTUREKeywords:pipeline,ADC,analogtodigitalconverter,analogtodigitalconvertor,A/D,latency,blockdiagram,Mar01,2001componentaccuracy,digitalerrorcorrection,archecturecomparison,ADCs,convertersAPPLICATIONNOTE1023UnderstandingPipelinedADCsAbstract:Thisarticleexplainsthearchitectureandoperationofpipelinedanalog-to-digitalconverters(ADCs).Itdiscusseskeyperformancecharacteristicssuchasarchitecture,latency,digitalerrorcorrection,componentaccuracy,anddigitalcalibration.ThearticlealsobrieflycomparespipelinesADCstootherdataconverterarchitectures.Thepipelinedanalog-to-digitalconverter(ADC)hasbecomethemostpopularADCar……
  • 所需E币: 4
    时间: 2019-12-24 22:05
    大小: 72.09KB
    上传者: 微风DS
    Abstract:Interleavingmultipleanalog-to-digitalconverters(ADCs)isusuallyperformedwiththeintenttoincreaseaconverterseffectivesamplerate,especiallyiftherearenooronlyfewoff-the-shelfADCsavailablethatfulfillthedesiredsample,linearityandACrequirementsofsuchapplications.However,time-interleavingdataconvertersisnotaneasytask,becauseevenwithperfectlylinearcomponents,gain/offsetmismatchesandtimingerrorscancauseundesiredspursintheoutputspectrum.Thefollowingarticleprovidesvaluableinsightintothetheoreticalapproachoftime-interleavedanalog-to-digitalconvertersandthekindofroadblocks(andhowtocompensateforthem)adesignerusuallyencounterswhenbuildingatime-interleavedsystem.Maxim>DesignSupport>TechnicalDocuments>Tutorials>A/DandD/AConversion/SamplingCircuits>APP989Maxim>DesignSupport>TechnicalDocuments>Tutorials>Basestations/WirelessInfrastructure>APP989Maxim>DesignSupport>TechnicalDocuments>Tutorials>High-SpeedSignalProcessing>APP989Keywords:interleaving,time-interleaving,high-speed,analog-to-digitalconverter,high-speedADC,coarsequantizer,finequantizer,flashconverter,bandwidthlimitation,offseterror,gainerror,mismatches,nonlinearities,clockphasenoise,clockjitterMar01,2001TUTORIAL989MultiplyYourSamplingRatewithTime-InterleavedDataConvertersMar01,200……
  • 所需E币: 3
    时间: 2019-12-24 21:53
    大小: 49.9KB
    上传者: wsu_w_hotmail.com
    Abstract:Differentialgainandphase(DGandDP)arecommonvideospecifications.Whatarethey?Whyaretheyusediftheycannotbeseen?Thisapplicationnoteanswersthesequestions,andexplainshowthesespecificationsareappliedtoothernonvideoamplifiers,ADCs,andDACs.Maxim>Designsupport>Appnotes>AmplifierandComparatorCircuits>APP4294Maxim>Designsupport>Appnotes>AutomaticTestEquipment(ATE)>APP4294Maxim>Designsupport>Appnotes>Automotive>APP4294Keywords:DG,DP,differentialgainphase,videoerror,NTSC,TV,invisibleamplifier,PAL,subcarrier,ADC,DAC,sweet-spot,linear,linearity,Sallen-Key,filter,video,quality,signalintegrityMay23,2011APPLICATIONNOTE4294DifferentialGainandPhase―WhyMeasureIt,ifYouCannotSeeIt?By:BillLaumeister,StrategicApplicationsEngineerAbstract:Differentialgainandphase(DGandDP)arecommonvideospecifications.Whatarethey?Why……
  • 所需E币: 5
    时间: 2019-12-24 20:16
    大小: 96.2KB
    上传者: rdg1993
    摘要:出于安全原因,我们保持我们的电路引用到我们的环境。在大多数情况下,这是大地。本应用笔记介绍了如何正确理解释放的本地电路接地作为参考点我们的思维去考虑其他的简单电路。Maxim>AppNotes>AUDIOCIRCUITSCIRCUITPROTECTIONGENERALENGINEERINGTOPICSSIGNALGENERATIONCIRCUITSTEMPERATURESENSORSandTHERMALMANAGEMENTKeywords:Initialaccuracy,digitalpots,potentiometer,resistance,voltagedividers,ratiometric,ratiosteps,Sep25,2008LSB,tapserror,referencedecoupling,EarthGround,highpush-buttoninterface,commonspaceshuttle,localpotentialAPPLICATIONNOTE4292WhereIsGround?By:BillLaumeisterAbstract:Forsafetyreasonswekeepourcircuitsreferencedtooursurroundings.Inmostcasesthisisearthground.Thisapplicationnoteexplainshowaproperunderstandingoflocalcircuitgroundasareferencepointfreesourthinkingtoconsiderothersimplecircuits.Whereisgroundinspace?Usuallyengineeringisstrictlyco……
  • 所需E币: 4
    时间: 2019-12-24 19:52
    大小: 49.9KB
    上传者: 微风DS
    摘要:差分增益和相位(DG和DP)是常见的视频规格。它们是什么?为什么使用它们,如果他们不能看到呢?本应用笔记中回答了这些问题,并解释如何适用于其他nonvideo放大器,模数转换器和数模转换器(DAC),这些规范。Maxim>Designsupport>Appnotes>AmplifierandComparatorCircuits>APP4294Maxim>Designsupport>Appnotes>AutomaticTestEquipment(ATE)>APP4294Maxim>Designsupport>Appnotes>Automotive>APP4294Keywords:DG,DP,differentialgainphase,videoerror,NTSC,TV,invisibleamplifier,PAL,subcarrier,ADC,DAC,sweet-spot,linear,linearity,Sallen-Key,filter,video,quality,signalintegrityMay23,2011APPLICATIONNOTE4294DifferentialGainandPhase―WhyMeasureIt,ifYouCannotSeeIt?By:BillLaumeister,StrategicApplicationsEngineerAbstract:Differentialgainandphase(DGandDP)arecommonvideospecifications.Whatarethey?Why……
  • 所需E币: 5
    时间: 2019-12-24 19:47
    大小: 49.9KB
    上传者: 238112554_qq
    要:差分增益和相位(DG和DP)是常见的视频规格。它们是什么?为什么使用它们,如果他们不能看到呢?本应用笔记中回答了这些问题,并解释如何适用于其他nonvideo放大器,模数转换器和数模转换器(DAC),这些规范。Maxim>Designsupport>Appnotes>AmplifierandComparatorCircuits>APP4294Maxim>Designsupport>Appnotes>AutomaticTestEquipment(ATE)>APP4294Maxim>Designsupport>Appnotes>Automotive>APP4294Keywords:DG,DP,differentialgainphase,videoerror,NTSC,TV,invisibleamplifier,PAL,subcarrier,ADC,DAC,sweet-spot,linear,linearity,Sallen-Key,filter,video,quality,signalintegrityMay23,2011APPLICATIONNOTE4294DifferentialGainandPhase―WhyMeasureIt,ifYouCannotSeeIt?By:BillLaumeister,StrategicApplicationsEngineerAbstract:Differentialgainandphase(DGandDP)arecommonvideospecifications.Whatarethey?Why……
  • 所需E币: 4
    时间: 2019-12-24 19:26
    大小: 49.9KB
    上传者: rdg1993
    摘要:差分增益和相位(DG和DP)是常见的视频规格。它们是什么?为什么使用它们,如果他们不能看到呢?本应用笔记中回答了这些问题,并解释如何适用于其他nonvideo放大器,模数转换器和数模转换器(DAC),这些规范。Maxim>Designsupport>Appnotes>AmplifierandComparatorCircuits>APP4294Maxim>Designsupport>Appnotes>AutomaticTestEquipment(ATE)>APP4294Maxim>Designsupport>Appnotes>Automotive>APP4294Keywords:DG,DP,differentialgainphase,videoerror,NTSC,TV,invisibleamplifier,PAL,subcarrier,ADC,DAC,sweet-spot,linear,linearity,Sallen-Key,filter,video,quality,signalintegrityMay23,2011APPLICATIONNOTE4294DifferentialGainandPhase―WhyMeasureIt,ifYouCannotSeeIt?By:BillLaumeister,StrategicApplicationsEngineerAbstract:Differentialgainandphase(DGandDP)arecommonvideospecifications.Whatarethey?Why……
  • 所需E币: 5
    时间: 2019-12-24 19:25
    大小: 72.09KB
    上传者: 16245458_qq.com
    摘要:交错多个模拟-数字转换器(ADC)通常采用增加一个转换器,有效样本率的意图,尤其是如果有没有或只有很少可用的现成的ADC完成所需的样品,线性交流等应用的要求。然而,时间交错的数据转换器是不是一件容易的事,因为即使有完美的线性元件,增益/偏移不匹配和时序错误可能会导致在输出频谱中意外马刺。时间交错的模拟-数字转换器和路障(以及如何补偿他们)的理论方法,设计师通常会建立一个时间交错系统时遇到下面的文章提供了宝贵的见解。Maxim>DesignSupport>TechnicalDocuments>Tutorials>A/DandD/AConversion/SamplingCircuits>APP989Maxim>DesignSupport>TechnicalDocuments>Tutorials>Basestations/WirelessInfrastructure>APP989Maxim>DesignSupport>TechnicalDocuments>Tutorials>High-SpeedSignalProcessing>APP989Keywords:interleaving,time-interleaving,high-speed,analog-to-digitalconverter,high-speedADC,coarsequantizer,finequantizer,flashconverter,bandwidthlimitation,offseterror,gainerror,mismatches,nonlinearities,clockphasenoise,clockjitterMar01,2001TUTORIAL989MultiplyYourSamplingRatewithTime-InterleavedDataConvertersMar01,200……