登录
首页 » Windows核心 » 好东西,用dephi写的,高数中的算法,包括积分,微分,极限,级数,最优化方法等...

好东西,用dephi写的,高数中的算法,包括积分,微分,极限,级数,最优化方法等...

于 2022-11-20 发布 文件大小:2.58 MB
0 36
下载积分: 2 下载次数: 1

代码说明:

好东西,用dephi写的,高数中的算法,包括积分,微分,极限,级数,最优化方法等-good things with dephi written in the high number of algorithms, including integral, differential, limit, series, optimization methods

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • c专家编程
    《C专家编程》展示了最优秀的C程序员所使用的编码技巧,并专门开辟了一章对C++的基础知识进行了介绍。书中C的历史、语言特性、声明、数组、指针、链接、运行时、内存以及如何进一步学习C++等问题进行了细致的讲解和深入的分析。全书撷取几十个实例进行讲解,对C程序员具有非常高的实用价值。本书可以帮助有一定经验的C程序员成为C编程方面的专家,对于具备相当的C语言基础的程序员,本书可以帮助他们站在C的高度了解和学习C++。
    2023-05-04 14:25:05下载
    积分:1
  • 检测某一线程是否正在运行,可以控制启动,杀掉某一线程,主要为空调数据采集写的D...
    检测某一线程是否正在运行,可以控制启动,杀掉某一线程,主要为空调数据采集写的D-detect whether a thread is running, can control start, kill a thread, mainly for air conditioning Data Acquisition write D
    2022-02-10 05:13:49下载
    积分:1
  • VB获取系统信息的源程序,可以获取系统的硬件信息。
    VB获取系统信息的源程序,可以获取系统的硬件信息。-VB source code to obtain system information, you can access the system" s hardware information.
    2022-04-24 23:27:18下载
    积分:1
  • 这4个部分系列将讨论的窗口访问控制模型,以及它是如何。
    This 4 part series will discuss the Windows access control model and how it is implemented in Windows NT and 2000. In this 2nd article we will start programming with security identifiers, access control lists and security descriptors. We will solve trivial problems using the SID, obtain information from an access token, enable a privilege, fill up an access control list, and finally we will check if we have access to a resource. The demo project provided is a Whoami clone written Windows 2000 style. The source code includes equivalent programs of the article s code written with the Low level APIs, the Windows 2000 APIs, and the Active Template Library.
    2022-02-09 15:24:09下载
    积分:1
  • CPU编程,比较低层的硬件编程的 chm 资料文件
    CPU编程,比较低层的硬件编程的 chm 资料文件--
    2022-07-23 00:49:00下载
    积分:1
  • 长把时间都花费在为您修正说明上。压缩包解压时不能有密码。系统会自动删除debug和release目录,所以请不要将文件放在这两个目录下...
    长把时间都花费在为您修正说明上。压缩包解压时不能有密码。系统会自动删除debug和release目录,所以请不要将文件放在这两个目录下-Have spent a long time for your note on the amendment. Compressed packets can not extract password. The system will automatically delete the debug and release directory, so please do not file on these two directory
    2022-08-03 07:48:09下载
    积分:1
  • 这是少女字库的安装软件 要先安装了,才能识别出来,已经签证...
    这是少女字库的安装软件 要先安装了,才能识别出来,已经签证-This is the font of the girls have to install the software installed can be identified, have a visa
    2023-06-15 12:00:03下载
    积分:1
  • 《学生课绩管理系统》的升级版,采用了sertlet+jsp+Javabean+sqlserver,并且做了许多修改! 说明: 数据库连接 在classes...
    《学生课绩管理系统》的升级版,采用了sertlet+jsp+Javabean+sqlserver,并且做了许多修改! 说明: 数据库连接 在classes目录下的 sqlbean.java中 默认的用户名:1 密码: 1 -"student class performance management systems," an updated version using the sertlet jsp Javabean SQLServer, and made many changes! Description : Database Connection classes in the directory sqlbean.java default user name : a password : 1
    2022-11-06 12:00:03下载
    积分:1
  • Windows 中创建空的备用列表
    翻译:maninwest@Codeforge 作者:Member 10018957 @CodeProject如何在 Windows 中创建看空的备用列表。进程黑_客的制造者了解 Windows 内核的里里外外,他们也幸运地熟练掌握 Windows 内核的设计语言C++。而其他的人则努力通过 C# 执行相似的功能。其中一个功能就是释放来自 windows 备用内存的内存。这就是我们在此要做的。最难的部分是获取内核的优先权限。感谢Nick Lowe:http://processprivileges.codeplex.com/步骤1:设置内核优先权限Microsoft 设计了可以获取包含结构数组的结构的 API。没有适用于此的编组过程的捷径。要么假设数组是 length=1 要么要求数组大小在编译时预先确定。为此,我设计了一个类,它通过 System.IntPtr拥有微软在未管理的内存中需要的确切结构。当前,我不得不采用不安全的步骤,但是我确定,将来会有办法绕过。[return: MarshalAs(UnmanagedType.Bool)] [SuppressUnmanagedCodeSecurity, DllImport("advapi32.dll", SetLastError = true)] internal static extern bool AdjustTokenPrivileges(AccessTokenHandle accessTokenHandle, [MarshalAs(UnmanagedType.Bool)] bool disableAllPrivileges, IntPtr NewPriviledges, Int32 bufferLength, ref IntPtr PriorPriviledges, out Int32 returnLength); 将我的类和  Nick Lowe 的优先代码相结合,我们可以设置内核优先权限:
    2022-05-07 13:17:48下载
    积分:1
  • bundling machine code bundling machine code bundling machine code bundling machi...
    捆绑机代码 捆绑机代码 捆绑机代码-bundling machine code bundling machine code bundling machine code bundling machine code bundle tied machine code bundled machine code
    2022-01-26 19:32:12下载
    积分:1
  • 696524资源总数
  • 103939会员总数
  • 12今日下载