Requirementsandconceptsforfutureautomotiveelectronicarchitecturesfromtheviewofintegratedsafety
2023/12/21 14:41:56 6.83MB automotive
1
DataMining:TheTextbookBy作者:CharuC.AggarwalISBN-10书号:3319141414ISBN-13书号:9783319141411Edition版本:2015出版日期:2015-04-14pages页数:(734)$89.99Thistextbookexploresthedifferentaspectsofdataminingfromthefundamentalstothecomplexdatatypesandtheirapplications,capturingthewidediversityofproblemdomainsfordataminingissues.Itgoesbeyondthetraditionalfocusondataminingproblemstointroduceadvanceddatatypessuchastext,timeseries,discretesequences,spatialdata,graphdata,andsocialnetworks.Untilnow,nosinglebookhasaddressedallthesetopicsinacomprehensiveandintegratedway.Thechaptersofthisbookfallintooneofthreecategories:Fundamentalchapters:Datamininghasfourmainproblems,whichcorrespondtoclustering,classification,associationpatternmining,andoutlieranalysis.Thesechapterscomprehensivelydiscussawidevarietyofmethodsfortheseproblems.Domainchapters:Thesechaptersdiscussthespecificmethodsusedfordifferentdomainsofdatasuchastextdata,time-seriesdata,sequencedata,graphdata,andspatialdata.Applicationchapters:Thesechaptersstudyimportantapplicationssuchasstreammining,Webmining,ranking,recommendations,socialnetworks,andprivacypreservation.Thedomainchaptersalsohaveanappliedflavor.Appropriateforbothintroductoryandadvanceddataminingcourses,DataMining:TheTextbookbalancesmathematicaldetailsandintuition.Itcontainsthenecessarymathematicaldetailsforprofessorsandresearchers,butitispresentedinasimpleandintuitivestyletoimproveaccessibilityforstudentsandindustrialpractitioners(includingthosewithalimitedmathematicalbackground).Numerousillustrations,examples,andexercisesareincluded,withanemphasisonsemanticallyinterpretableexamples.
2023/12/10 1:06:56 9.81MB network
1
RF系统设计,PCB阻抗计算WhatisAppCAD?“AppCADisaneasy-to-useprogramthatprovidesyouwithauniquesuiteofRFdesigntoolsandcomputerizedApplicationNotestomakeyourwirelessdesignjobfasterandeasier.AppCAD'sunique,interactiveapproachmakesengineeringcalculationsquickandeasyformanyRF,microwave,andwirelessapplications.AppCADisusefulforthedesignandanalysisofmanycircuits,signals,andsystemsusingproductsfromdiscretetransistorsanddiodestoSiliconandGaAsintegratedcircuits.ThekeywordforAppCADiseasy-nocircuitfiles,nomanuals-justquickandeasy.“
2023/11/30 4:39:05 13.61MB RF 设计工具
1
5GNR:Architecture,Technology,Implementation,andOperationof3GPPNewRadioStandardsisanin-depth,systematic,technicalreferenceon3GPP'sNewRadiostandards(Release15andbeyond),coveringtheunderlyingtheory,functionaldescriptions,practicalconsiderationsandimplementationofthe5Gnewradioaccesstechnology.Thebookdescribesthedesignandoperationofindividualcomponentsandshowshowtheyareintegratedintotheoverallsystemandoperatefromasystemsperspective.Uniquely,thisbookgivesdetailedinformationonRANprotocollayers,transport,networkarchitectureandservices,aswellaspracticalimplementationanddeploymentissues,makingitsuitableforresearchersandengineerswhoaredesigninganddeveloping5Gsystems.Reflectingontheauthor's30plusyearsofexperienceinsignalprocessing,microelectronicsandwirelesscommunicationsystemdesign,thisbookisidealforprofessionalengineers,researchersandgraduatestudentsworkingandresearchingincellularcommunicationsystemsandprotocolsaswellasmobilebroadbandwirelessstandards.Strongfocusonpracticalconsiderations,implementationanddeploymentissuesTakesatop-downapproachtoexplainsystemoperationandfunctionalinterconnectionCoversallfunctionalcomponents,features,andinterfacesbasedonclearprotocolstructureandblockdiagramsDescribesRFandtransceiverdesignconsiderationsinsub-6GHzandmmWavebandsCoversnetworkslicing,SDN/NFV/MECnetworksandcloudandvirtualizedRANarchitecturesComprehensivecoverageofNRmulti-antennatechniquesandbeamformedoperationAconsistentandintegratedcoveragereflectingtheauthor’sdecadesofexperienceindeveloping3G,4Gand5Gtechnologiesandwritingtwosuccessfulbooksintheseareas
2023/11/25 3:32:37 28.93MB 5G NR New Radio
1
市面上有很多介绍C语言的书,但这是第一本将C语言以简洁而实用的方式介绍给读者的书籍。
用C语言进行编程不仅仅是在程序中使用正确的句法,编程的风格以及程序的调试在编写程序的过程中也占有相当大的篇幅,从而有助于程序的良好运行且易于维护。
本书不仅仅向你介绍编程的机制,同时也告诉你如何创建易于阅读、调试和更改的程序。
本书也强调了实用的原则。
例如在讨论C中运算优先级时,15种级别被归纳为下面两条原则:-先乘除,后加减;
-在所有该加括号的地方都加上括号第三版除介绍UNIX上的编程工具之外,还介绍了流行的Windows系统上集成开发环境(IntegratedDevelopmentEnvironments)。
第一部分基础11第一章什么是C13编程原理14C语言简史17C如何工作17如何学习C19第二章编程基础21程序从概念到运行21编写一个真正的程序22使用命令行编译器编程23使用集成开发环境(IDE)编程27获取UNIX帮助45获取集成开发环境帮助45集成开发环境菜单45编程练习48第三章风格49基础编码练习54编码盲从56缩进与编码格式56清晰57简明58小结59第四章基本定义与表达式60程序要素60程序的基本结构61简单表达式62变量和存储64变量定义65整型66赋值语句66printf函数68浮点型70浮点数与整数的除法运算70字符73答案74编程练习75第五章数组、修饰符与读取数字76数组76串78读取串81多维数组84读取数字86变量初始化88整型90浮点型92常量说明93十六进制与八进制常量93快捷运算符94副作用95++x或x++96更多的副作用问题97答案98编程练习99第六章条件和控制语句101if语句101else语句102怎样避免误用strcmp函数104循环语句104While语句105break语句107continue语句108随处赋值的副作用109答案111编程练习111第七章程序设计过程113设置115程序规范116代码设计116原型118Makefile119测试123调试124维护126修改126代码分析127注释程序128使用调试器128用文本编辑器浏览128增加注释128编程练习131第二部分简单程序设计133第八章更多的控制语句135for语句135switch语句139switch,break和continue145答案145编程练习147第九章变量作用域和函数149作用域和类149函数153无参数的函数157结构化程序设计158递归160答案161编程练习162第十章C预处理器163*define语句163条件编译170包含文件173带参数的宏174高级特征176小结176答案177编程练习180第十一章位运算181位运算符183与运算符(&)183按位或(\)186按位异或(^)187非运算符(~)187左移与右移运算符(<>)188设置、清除和检测位190位图图形194答案200编程练习201第十二章高级类型202结构202联合205typedef207枚举类型209强制类型转换210位字段或紧缩结构210结构数组212小结213编程练习213第十三章简单指针215函数自变量指针220常量指针222指针和数组224如何不使用指针229用指针分隔字符串231指针和结构235命令行参数236编程练习242答案242第十四章文件输入/输出245转换程序249二进制和ASCII码文件252行尾难题253二进制I/O255缓冲问题257非缓冲I/O258设计文件格式264答案266编程练习267第十五章调试和优化268调试268交互调试器280调试一个二分查找程序285实时运行错误297公开
2023/11/8 22:50:27 20.09MB C语言 编程
1
Highlyintegrated,applicationprocessingplatformforCloud-connectedvoiceassistantdeviceswithGoogleCastandPowerAQ
2023/11/8 2:20:43 300KB hardware
1
VirtualizationForDummies,AMDSpecialEditionexplainshowvirtualizationworks,howitcanbenefityourorganization,andhowthelatestinstructionsetofthex86architectureisengineeredtobetterintegratecomputinghardwarewithvirtualizationsoftwareandthereforemakevirtualizationfasterandmorereliable.
2023/10/31 11:58:48 1.58MB virtualization
1
HPilo4固件2.4HPilo4中文语言包2.4
2023/10/27 16:04:28 13.05MB ilo4 language
1
微波电路中的非对称无源器件,韩国Ahn编著,经典中的经典,研究射频无源器件的人必看的书籍
2023/10/12 17:03:06 5.9MB 微波电路 非对称 无源器件
1
Inthisletter,ap-channellateraldoublediffusedMOSFET(p-LDMOS)withdoubleelectronpathsusedtoenhancethecurrentcapabilityisproposed.Theproposedp-LDMOShastwon-channelsthatarecontrolledbyanauto-generatedvoltagesignal(VGn).ThevoltagesignalVGnisgeneratedduringtheONandOFFstatesoftheholecurrentthatflowsacrossanintegratedresistor(Rp)implementedintheP-baseregion.Thus,thecurrentcapabilityofthep-LDMOScanbesignificantlyenhancedbytheintr
2023/10/9 9:19:34 1.41MB p-LDMOS current capability autocontrolled
1
共 96 条记录 首页 上一页 下一页 尾页
在日常工作中,钉钉打卡成了我生活中不可或缺的一部分。然而,有时候这个看似简单的任务却给我带来了不少烦恼。 每天早晚,我总是得牢记打开钉钉应用,点击"工作台",再找到"考勤打卡"进行签到。有时候因为工作忙碌,会忘记打卡,导致考勤异常,影响当月的工作评价。而且,由于我使用的是苹果手机,有时候系统更新后,钉钉的某些功能会出现异常,使得打卡变得更加麻烦。 另外,我的家人使用的是安卓手机,他们也经常抱怨钉钉打卡的繁琐。尤其是对于那些不太熟悉手机操作的长辈来说,每次打卡都是一次挑战。他们总是担心自己会操作失误,导致打卡失败。 为了解决这些烦恼,我开始思考是否可以通过编写一个全自动化脚本来实现钉钉打卡。经过一段时间的摸索和学习,我终于成功编写出了一个适用于苹果和安卓系统的钉钉打卡脚本。
2024-04-09 15:03 15KB 钉钉 钉钉打卡