通过NI-VISA接口控制仪器1.安装NI硬件驱动,以支持NI-VISA2.使用Visa32.cs,引入Visa相关API具体实现参见代码
2024/5/25 10:08:09 32KB VISA C#
1
最新版下载地址:http://sourceforge.net/projects/findbugs/files/findbugs/3.0.0/http://sourceforge.jp/projects/sfnet_findbugs/downloads/findbugs%20eclipse%20plugin/3.0.0/edu.umd.cs.findbugs.plugin.eclipse_3.0.0.20140629-84d758f.zip/安装方法:直接解压后放到eclipse/plugin目录下即可,重启eclipse错误代码中英对照及修改方案见我的博客
2024/5/22 19:53:10 4.99MB findbugs 代码检查 eclipse插件 3.0.0版本
1
在立体空间内根据散点信息剖分三角形的算法,有详细的中文注释。
实际上是剖分四面体(四个顶点组成的立体)使用Delaunay3Ddelaunay=Delaunay3D.Triangulate(Listvertices)方法计算。
使用delaunay.Edges和delaunay.Triangles获得边和三角形的信息。
使用delaunay.Tetrahedra获得剖分的四面体的信息。
1
微软C#OleDbHelper.cs源码,微软C#OleDbHelper.cs源码,微软C#OleDbHelper.cs源码,微软C#OleDbHelper.cs源码
2024/5/14 22:53:27 80KB 微软 C# OleDbHelper 源码
1
仅供参考.
2024/5/5 14:46:37 5.16MB homework
1
cs下载,懂得人自然懂。
中文版。
cs下载,懂得人自然懂。
中文版。
cs下载,懂得人自然懂。
中文版。
cs下载,懂得人自然懂。
中文版。
cs下载,懂得人自然懂。
中文版。
cs下载,懂得人自然懂。
中文版。
2024/5/4 22:19:21 20.71MB cs
1
ReviewFromthereviews:"Thebookisdevotedtopublickeycryptography,whoseprincipalgoalistoallowtwoormorepeopletoexchangeconfidentialinformation….Thematerialisverywellorganized,anditisself-contained:noprerequisitesinhighermathematicsareneeded.Infact,everythingisexplainedandcarefullycovered….thereisabundanceofexamplesandproposedexercisesattheendofeachchapter.…Thisbookisidealasatextbookforacourseaimedatundergraduatemathematicsorcomputersciencestudents."(FabioMainardi,TheMathematicalAssociationofAmerica,October,2008)"Thisbookfocusesonpublickeycryptography….Hoffstein,Pipher,andSilverman…provideathoroughtreatmentofthetopicswhilekeepingthematerialaccessible.…Thebookusesexamplesthroughoutthetexttoillustratethetheorems,andprovidesalargenumberofexercises….Thevolumeincludesanicebibliography.…SummingUp:Highlyrecommended.Upper-divisionundergraduatethroughprofessionalcollections."(C.Bauer,Choice,Vol.46(7),March,2009)"Formostundergraduatestudentsinmathematicsorcomputerscience(CS),mathematicalcryptographyisachallengingsubject.…itiswritteninawaythatmakesyouwanttokeepreading.…Theauthorsofficiallytargetedthebookforadvancedundergraduateorbeginninggraduatestudents.Ibelievethatthisaudienceisappropriate.…itcouldevenbeusedwithstudentswhoarejustlearninghowtoexecuterigorousmathematicalproofs.…Istronglybelievethatitfindstherighttonefortoday’sstudents…."(BurkhardEnglert,ACMComputingReviews,March,2009)"Theexercisesandtextwouldmakeanexcellentcourseforundergraduateindependentstudy.…Thisisanexcellentbook.Hoffstein,PipherandSilvermanhavewrittenasgoodabookasispossibletoexplainpublickeycryptography.…Thisbookwouldprobablybebestsuitedforagraduatecoursethatfocusedonpublickeycryptography,forunder
2024/5/2 18:28:21 7.38MB 密码学
1
拉杆抽奖小demo,点击button开始上下转动,移动几个格子在setscroll那个cs类中修改,button绑定的那个方法name为gezi的参数就是,速度等也很简单,初学者也一下子就能看懂,希望能够帮到大家。
从我的一个项目中拉出来的,所以有很多注掉的和没注释掉得没用的东西,不好的地方请轻拍,交流学习嘛。
谢谢
2024/4/27 1:11:43 5.14MB unity 抽奖
1
示例描述:本章实现了图书管理系统,功能主要分为三部分:书目检索、读者管理、图书管理;
书目检索包括普通检索和高级检索;
读者管理包括读者登录、读者信息、读者借阅历史、读者当前借阅、读者借阅过期催还、管理员登录等功能;
图书管理包括图书借阅、图书归还、添加图书、图书维护、添加用户、用户维护、密码修改。
\MyLibrary\App_Code\BusinessLogicLayer 图书管理业务逻辑层,包括以下文件: \Book.cs 图书信息类 \Borrow.cs 借阅类 \User.cs 用户类\MyLibrary\App_Code\DataAccessHelper 图书管理数据访问接口层,包括文件: \SQLString.cs 构造SQL语句的通用类 \GetSafeData.cs 安全获取数据类\MyLibrary\App_Code\DataAccessLayer 图书管理数据访问层,包括文件: \DataBase.cs 数据访问类\MyLibrary\Controls 图书管理用户控件,包括文件: \AdminLeft.ascx 管理员左侧菜单控件 \ReaderLogin.ascx 用户登录后菜单控件 \ReaderTop.ascx 用户不登录菜单控件\MyLibrary\DB\MyLibrary.sql 图书管理数据库创建脚本\MyLibrary\DB\MyLibrary.bak 图书管理数据库备份\MyLibrary\Images\ 图书管理系统图片文件夹\MyLibrary\UsersManage 图书管理用户管理,包括文件: \UserAdd.aspx 添加用户页面 \UserLists.aspx 用户维护页面 \UserDetails.aspx 用户详细页面\MyLibrary\BookManage 图书管理图书管理,包括文件: \BookAdd.aspx 添加图书页面 \BookLists.aspx 图书维护页面 \BookDetails.aspx 图书详细页面 \BookSearch.aspx 图书搜索页面 \BookSearchResult.aspx 搜索结果页面 \ReaderBookAdvancedSearch.aspx 用户高级搜索页面 \AdminBookAdvancedSearch.aspx 管理员高级搜索页面\MyLibrary\Reader 图书管理读者信息管理,包括文件: \ReaderLogin.aspx 读者登录页面 \ReaderLoginMain.aspx 读者登录后主页面 \ReaderNotLogin.aspx 读者未登录页面 \ReaderBorrowHistory.aspx 借阅历史页面 \ReaderCurrentBorrow.aspx 当前借阅页面 \ReaderExpireCuiHuan.aspx 过期催还页面 \ReaderInformation.aspx 读者信息页面\MyLibrary\Borrow 图书管理借阅管理,包括文件: \BorrowBook.aspx 借阅图书页面 \ReturnBook.aspx 归还图书页面
2024/4/15 20:46:20 766KB 图书馆
1
算法第4版(中文版扫描版+英文文字彩图版+代码+说明)Robert.Sedgewick.&.Kevin.Wayne.谢路云译内含:算法第4版-中文版扫描版-塞奇威克-带书签pdfAlgorithms.-.Fourth.Edition.Robert.Sedgewick.&.Kevin.Wayne代码(因为限制200MB,传不了了,这是网址,自己下载吧,放心是免费的源码网址:github:https://github.com/kevin-wayne/algs4书中所有代码库网址:algs4.jarhttps://algs4.cs.princeton.edu/code/algs4.jar说明及其其他资料下载地址上传东西不易,且行且珍惜,你用的好就好
2024/3/29 17:54:17 199.18MB 算法
1
共 260 条记录 首页 上一页 下一页 尾页
在日常工作中,钉钉打卡成了我生活中不可或缺的一部分。然而,有时候这个看似简单的任务却给我带来了不少烦恼。 每天早晚,我总是得牢记打开钉钉应用,点击"工作台",再找到"考勤打卡"进行签到。有时候因为工作忙碌,会忘记打卡,导致考勤异常,影响当月的工作评价。而且,由于我使用的是苹果手机,有时候系统更新后,钉钉的某些功能会出现异常,使得打卡变得更加麻烦。 另外,我的家人使用的是安卓手机,他们也经常抱怨钉钉打卡的繁琐。尤其是对于那些不太熟悉手机操作的长辈来说,每次打卡都是一次挑战。他们总是担心自己会操作失误,导致打卡失败。 为了解决这些烦恼,我开始思考是否可以通过编写一个全自动化脚本来实现钉钉打卡。经过一段时间的摸索和学习,我终于成功编写出了一个适用于苹果和安卓系统的钉钉打卡脚本。
2024-04-09 15:03 15KB 钉钉 钉钉打卡