CodejockSuiteProforActivex_v18.6.0_x86Allcomponentsmustberegisteredwithregedit.exe
2024/6/27 3:57:23 71.91MB suite active
1
支持向量机源码,可在www.csie.ntu.edu.tw/~cjlin/libsvm/下载到最新版本,该版本是2013年4月更新的,3.17版。
压缩包里面有源代码和文档。
以下摘自前述网站:IntroductionLIBSVMisanintegratedsoftwareforsupportvectorclassification,(C-SVC,nu-SVC),regression(epsilon-SVR,nu-SVR)anddistributionestimation(one-classSVM).Itsupportsmulti-classclassification.Sinceversion2.8,itimplementsanSMO-typealgorithmproposedinthispaper:R.-E.Fan,P.-H.Chen,andC.-J.Lin.WorkingsetselectionusingsecondorderinformationfortrainingSVM.JournalofMachineLearningResearch6,1889-1918,2005.Youcanalsofindapseudocodethere.(howtociteLIBSVM)OurgoalistohelpusersfromotherfieldstoeasilyuseSVMasatool.LIBSVMprovidesasimpleinterfacewhereuserscaneasilylinkitwiththeirownprograms.MainfeaturesofLIBSVMincludeDifferentSVMformulationsEfficientmulti-classclassificationCrossvalidationformodelselectionProbabilityestimatesVariouskernels(includingprecomputedkernelmatrix)WeightedSVMforunbalanceddataBothC++andJavasourcesGUIdemonstratingSVMclassificationandregressionPython,R,MATLAB,Perl,Ruby,Weka,CommonLISP,CLISP,Haskell,OCaml,LabVIEW,andPHPinterfaces.C#.NETcodeandCUDAextensionisavailable.It'salsoincludedinsomedataminingenvironments:RapidMiner,PCP,andLIONsolver.Automaticmodelselectionwhichcangeneratecontourofcrossvaliationaccuracy.
2024/5/16 22:20:35 869KB 支持向量机 libsvm
1
基于Linux系统下的TSM和DB2数据库的还原性测试02-数据库还原测试服务器安装
2024/4/24 17:41:45 405KB TSM还原性测试 DB2
1
Theavailabilityoflargedatasetshasallowedresearcherstouncovercomplexpropertiessuchaslarge-scalefluctuationsandheterogeneitiesinmanynetworks,leadingtothebreakdownofstandardtheoreticalframeworksandmodels.Untilrecentlythesesystemswereconsideredashaphazardsetsofpointsandconnections.Recentadvanceshavegeneratedavigorousresearcheffortinunderstandingtheeffectofcomplexconnectivitypatternsondynamicalphenomena.Thisbookpresentsacomprehensiveaccountoftheseeffects.Avastnumberofsystems,fromthebraintoecosystems,powergridsandtheInternet,canberepresentedaslargecomplexnetworks.Thisbookwillinterestgraduatestudentsandresearchersinmanydisciplines,fromphysicsandstatisticalmechanics,tomathematicalbiologyandinformationscience.Itsmodularapproachallowsreaderstoreadilyaccessthesectionsofmostinteresttothem,andcomplicatedmathsisavoidedsothetextcanbeeasilyfollowedbynon-expertsinthesubject.
2024/4/13 10:16:27 7.08MB Complex Networks
1
该存储库包含的提供程序,该提供程序检索存储在中的。
总览每个应用程序都具有某种设置,例如数据库连接字符串或某些外部API凭据,这些设置永远都不应检查到源控件中。
但是,您的应用程序需要该设置才能正确执行其工作。
.NETCore本机支持从不同来源获取设置。
这允许根据当前环境定制应用程序。
典型的示例是数据库的连接字符串,该字符串可以变化,以便每个环境都可以连接到特定的数据库。
使用.NETCore的开发人员经常在其开发环境中使用。
另一方面,生产环境的设置通常存储在环境变量中。
提供了该问题的无服务器托管解决方案。
提供了一种方便的方法来访问存储在AWSSecretsManager中的机密。
这就是您的ASP.NETCore2.0应用程序的外观。
注意config.AddSecretsManager();在传递给ConfigureAppConfiguration方法的委托中。
publicclassProgram{publicstaticvoidMain(string[]args){BuildWe
1
题目:java拼图游戏姓名学号指导教师(签名)二○一一年七月十四日java拼图游戏[摘要]• 进一步加深对Java语言的理解和掌握:将所学的JAVA知识运用于实践中。
• 课程设计将理论与实践相结合,提供了一个既动手又动脑,独立实践的机会,锻炼我们的分析解决实际问题的能力,提高学生适应实际,实践编程的能力;• 熟练掌握JAVA语言中图形用户界面程序的编写;大体了解怎样用JAVA来编写小游戏的,增强我们实践能力和创新精神的综合培养。
前言编程思路:本练习因为要制作拼图游戏,所以首先要实现图片的导入。
这是通过getImage()函数来实现的,该函数有两个参数,第一个参数指明图片的路径,第二个参数指明图片的名称。
然后,因为要实现图片摆放的随意性,所以要通过initgame()函数来实现。
Initgame()函数是自写函数,在函数体内,通过调用Math.random()函数产生随机数,用来达到图片位置摆放的随意性和随机性。
最后,因为要实现人机交互.,所以首先要通过一系列函数来实现对鼠标事件的监听和响应,这是通过函数addMouseListener(this)和addMouseMotionListener(this)来完成的。
这样程序会区分用户对鼠标不同的操作,正确执行相应的功能。
//首先是程序实现及注释importjava.awt.*;importjava.applet.*;importjava.awt.event.*;publicclasspintuextendsApplet implementsMouseListener,MouseMotionListener{ privateImagepicture; privateGraphicsbuffer; privateImagepic[]; privateImageoff_pic[]; privateGraphicsoff_buf[]; privateImageoff_screen; privateGraphicsoff_buffer; privateImageoff_drag; privateGraphicsoff_drag_buf; privateintmap[][]; privateintran[]; privateintwidth=0; privateintheight=0; privateintlastx; privateintlasty; privateintlast_downx; privateintlast_downy; privateintstepx; privateintstepy; privatebooleanchoose; privatebooleanclick[][]; privatebooleanm_down; privatebooleanm_drag; privatebooleannot_redraw; privatebooleanable; Fontfont1,font2; //程序的初始化 publicvoidinit() {
2024/3/20 15:44:49 799KB java j2ee 课程设计报告
1
AndroidSM2、SM3、SM4算法支持ServiceProvider及证书制作软件包国密算法JCAJCEServiceProvider,适应版本Android4.2.2~7.0支持SM2的KeyFactory、KeyPairGenerator、Cipher、Signature、X.509CertificateFactory接口支持SM3的MessageDigest接口、SM3withSM2混合算法支持SM4的Cipher、KeyFactory、KeyGenerator、SecretKey接口、相关算法CMAC-SM4、Poly1305-SM4增加java.security.PublicKey的子类SM2PublicKey增加java.security.PrivateKey的子类SM2PrivateKey全功能支持SM3withSM2算法的X.509证书结构体解释与密码运算支持BKS、PKCS#12KeyStore生成、解释、验算X.509v1/v3证书,签名算法支持SM3withSM2、主流RSA、DSA、ECDSA....生成、解释、验算PKCS#10证书申请,签名算法支持SM3withSM2、主流RSA、DSA、ECDSA....***无须打包BouncyCastle支持库,体积小、节约内存***请参阅testSM.java、testCERT.java文件列表:1、AndroidSM.jar--SM2、SM3、SM4算法/证书支持的JCA/JCEServiceProvider类库2、AndroidCRT.jar--X.509数字证书/PKCS#10证书申请相关类库3、bc422.jar--BouncyCastle加密库,Android4.2.2内置版本(由真机导出dex文件转换而得,仅用于编译时选用,勿打包到apk文件中)4、testSM.java--SM2、SM3、SM4算法相关类引用范例5、testCERT.java--X.509数字证书/PKCS#10证书申请相关类引用范例6、readme.txt--本文因条件及精力限制,各类、方法的实现未经严格彻底的测试,不宜用于商业用途软件的开发。
如欲将本开发包发布、上传、拷贝、共享等,务必保持其内容完整性(包括本文)如有需要帮助或者索取源码,请联系suntongo@qq.com,suntongo@hotmail.com
2024/3/2 12:48:53 974KB Android SM2 SM3 SM
1
ProductDetailsPaperback:384pagesPublisher:Addison-WesleyProfessional;1edition(May19,2006)Language:EnglishISBN-10:0321349601ISBN-13:978-0321349606--------------------------------------------"IwasfortunateindeedtohaveworkedwithafantasticteamonthedesignandimplementationoftheconcurrencyfeaturesaddedtotheJavaplatforminJava5.0andJava6.Nowthissameteamprovidesthebestexplanationyetofthesenewfeatures,andofconcurrencyingeneral.Concurrencyisnolongerasubjectforadvancedusersonly.EveryJavadevelopershouldreadthisbook."--MartinBuchholzJDKConcurrencyCzar,SunMicrosystems"Forthepast30years,computerperformancehasbeendrivenbyMoore'sLaw;fromnowon,itwillbedrivenbyAmdahl'sLaw.Writingcodethateffectivelyexploitsmultipleprocessorscanbeverychallenging.JavaConcurrencyinPracticeprovidesyouwiththeconceptsandtechniquesneededtowritesafeandscalableJavaprogramsfortoday's--andtomorrow's--systems."--DoronRajwanResearchScientist,IntelCorp"Thisisthebookyouneedifyou'rewriting--ordesigning,ordebugging,ormaintaining,orcontemplating--multithreadedJavaprograms.Ifyou'veeverhadtosynchronizeamethodandyouweren'tsurewhy,youoweittoyourselfandyouruserstoreadthisbook,covertocover."--TedNewardAuthorofEffectiveEnterpriseJava"Brianaddressesthefundamentalissuesandcomplexitiesofconcurrencywithuncommonclarity.Thisbookisamust-readforanyonewhousesthreadsandcaresaboutperformance."--KirkPepperdineCTO,JavaPerformanceTuning.com"Thisbookcoversaverydeepandsubtletopicinaveryclearandconciseway,makingittheperfectJavaConcurrencyreferencemanual.Eachpageisfilledwiththeproblems(andsolutions!)thatprogrammersstrugglewitheveryday.EffectivelyexploitingconcurrencyisbecomingmoreandmoreimportantnowthatMoore'sLawisdeliveringmorecore
2024/2/26 0:53:57 978KB Java Concurrency in Practice
1
丹麦科技大学教授写的插值工具,Fortran和.exe都有,快捷好用,英文说明如下:programforinterpolatingvaluesfromagridusingbilinearorsplineinterpolation.thegridorthepredictionpointsmaybecineithergeographicalorutmcoordinates.thesplinepredictionisperformedinawindowofsize'nsp'x'nsp'pointsaroundthecwantedpoints,withtypicalvalueofnspbeing8foragoodinterpolation.
2024/2/22 3:14:57 313KB 脚本 Fortran 插值 格网插值
1
很好用的内存监测工具
2024/2/17 12:33:15 37.31MB Memory ANTS MemoryProfiler
1
共 96 条记录 首页 上一页 下一页 尾页
在日常工作中,钉钉打卡成了我生活中不可或缺的一部分。然而,有时候这个看似简单的任务却给我带来了不少烦恼。 每天早晚,我总是得牢记打开钉钉应用,点击"工作台",再找到"考勤打卡"进行签到。有时候因为工作忙碌,会忘记打卡,导致考勤异常,影响当月的工作评价。而且,由于我使用的是苹果手机,有时候系统更新后,钉钉的某些功能会出现异常,使得打卡变得更加麻烦。 另外,我的家人使用的是安卓手机,他们也经常抱怨钉钉打卡的繁琐。尤其是对于那些不太熟悉手机操作的长辈来说,每次打卡都是一次挑战。他们总是担心自己会操作失误,导致打卡失败。 为了解决这些烦恼,我开始思考是否可以通过编写一个全自动化脚本来实现钉钉打卡。经过一段时间的摸索和学习,我终于成功编写出了一个适用于苹果和安卓系统的钉钉打卡脚本。
2024-04-09 15:03 15KB 钉钉 钉钉打卡