虫虫首页| 资源下载| 资源专辑| 精品软件
登录| 注册

importAnt

  • Modern_Control_Theory

    The main aim of this book is to present a unified, systematic description of basic and advanced problems, methods and algorithms of the modern con- trol theory considered as a foundation for the design of computer control and management systems. The scope of the book differs considerably from the topics of classical traditional control theory mainly oriented to the needs of automatic control of technical devices and technological proc- esses. Taking into account a variety of new applications, the book presents a compact and uniform description containing traditional analysis and op- timization problems for control systems as well as control problems with non-probabilistic models of uncertainty, problems of learning, intelligent, knowledge-based and operation systems – importAnt for applications in the control of manufacturing processes, in the project management and in the control of computer systems.

    标签: Modern_Control_Theory

    上传时间: 2020-06-10

    上传用户:shancjb

  • Embeddings in Natural Language Processing

    Artificial Intelligence (AI) has undoubtedly been one of the most importAnt buz- zwords over the past years. The goal in AI is to design algorithms that transform com- puters into “intelligent” agents. By intelligence here we do not necessarily mean an extraordinary level of smartness shown by superhuman; it rather often involves very basic problems that humans solve very frequently in their day-to-day life. This can be as simple as recognizing faces in an image, driving a car, playing a board game, or reading (and understanding) an article in a newspaper. The intelligent behaviour ex- hibited by humans when “reading” is one of the main goals for a subfield of AI called Natural Language Processing (NLP). Natural language 1 is one of the most complex tools used by humans for a wide range of reasons, for instance to communicate with others, to express thoughts, feelings and ideas, to ask questions, or to give instruc- tions. Therefore, it is crucial for computers to possess the ability to use the same tool in order to effectively interact with humans.

    标签: Embeddings Processing Language Natural in

    上传时间: 2020-06-10

    上传用户:shancjb

  • Foundations of Data Science

    Computer science as an academic discipline began in the 1960’s. Emphasis was on programming languages, compilers, operating systems, and the mathematical theory that supported these areas. Courses in theoretical computer science covered finite automata, regular expressions, context-free languages, and computability. In the 1970’s, the study of algorithms was added as an importAnt component of theory. The emphasis was on making computers useful. Today, a fundamental change is taking place and the focus is more on a wealth of applications. There are many reasons for this change. The merging of computing and communications has played an importAnt role. The enhanced ability to observe, collect, and store data in the natural sciences, in commerce, and in other fields calls for a change in our understanding of data and how to handle it in the modern setting. The emergence of the web and social networks as central aspects of daily life presents both opportunities and challenges for theory.

    标签: Foundations Science Data of

    上传时间: 2020-06-10

    上传用户:shancjb

  • 漫画傅里叶解析

    本书以轻松有趣、通俗易懂的漫画及故事的方式将抽象、复杂的傅里叶知识融会其中,让人们在看故事的过程中就能完成对数学相关知识的“扫盲”。这是一本实用性很强的图书,与我们传统的教科书比较起来,具有几大突出的特点,一漫画的形式更易于让人接受,二边读故事边学知识,轻松且易于记忆,三更能让读者明白并记住傅里叶解析问题在现实生活中的应用。本书既可以作为人们日常生活中了解数学知识的读本,也可以作为数学及相关专业学生的参考用书,更可以是文科专业学生理性认识和学习数学知识的工具书及相关专业的参考用书

    标签: 数学 傅里叶

    上传时间: 2020-07-25

    上传用户:

  • 详解MATLAB在最优化计算中的应用

    本书首先介绍MATLAB的基本使用方法和程序设计基础,然后将MATLAB与最优化计算相结合,基于最优化理论与方法,讲解如何使用MATLAB求解最优化领域的实际问题。这些问题涵盖最优化理论与方法中的线性规划问题、整数规划问题、非线性规划问题、二次规划问题、多目标规划问题、图与网络优化问题和现代智能优化问题。本书内容循序渐进、由浅入深,并结合大量实例帮助读者理解和掌握最优化问题的建模方法与求解技巧。随书光盘中附有全部案例的源代码,并有大量教学视频,方便读者学习与提高。

    标签: MATLAB 最优化

    上传时间: 2020-07-25

    上传用户:

  • ExcelVBA基础教程

    VBA是Excel的底层根本。只有明白使用最底层的东西,使用起来才能随心所欲。对于多数读者而言,由于未使用过VBA或者不具备计算机语言知识,所以被VBA直白的语句所吓倒。但是楼主可以肯定的告诉大家,VBA其实很简单,并且很实用。学会后,也会上瘾;变化无穷,很有意思。

    标签: ExcelVBA 基础教程

    上传时间: 2020-09-26

    上传用户:

  • IIR、FIR试题解答

    数字信号处理有限脉冲响应和无限脉冲响应试题解答

    标签: IIR FIR 试题

    上传时间: 2020-11-12

    上传用户:

  • 轴承信号的小波降噪matlab程序

    对轴承信号进行小波分解后降噪,找出故障频率

    标签: matlab 信号 小波降噪 程序

    上传时间: 2021-01-10

    上传用户:

  • stdafx.h

    --stdafx.h中没有函数库,只是定义了一些环境参数,使得编译出来的程序能在32位的操作系统环境下运行。 windows和mfc的include文件都非常大,即使有一个快速的处理程序,编译程序也要花费相当长的时间来完成工作。由于每个.cpp文件都包含相同的include文件,为每个.cpp文件都重复处理这些文件就显得很傻了。 为避免这种浪费,appwizard和visualc++编译程序一起进行工作,如下所示: --appwizard建立了文件stdafx.h,该文件包含了所有当前工程文件需要的mfcinclude文件。且这一文件可以随被选择的选项而变化。 --appwizard然后就建立stdafx.cpp。这个文件通常都是一样的。 --然后appwizard就建立起工程文件,这样第一个被编译的文件就是stdafx.cpp。 --当visualc++编译stdafx.cpp文件时,它将结果保存在一个名为stdafx.pch的文件里。(扩展名pch表示预编译头文件。) --当visualc++编译随后的每个.cpp文件时,它阅读并使用它刚生成的.pch文件。visualc++不再分析windowsinclude文件,除非你又编辑了stdafx.cpp或stdafx.h。 在这个过程中你必须遵守以下规则: --你编写的任何.cpp文件都必须首先包含stdafx.h。 --如果你有工程文件里的大多数.cpp文件需要.h文件,顺便将它们加在stdafx.h(后部)上,然后预编译stdafx.cpp。 --由于.pch文件具有大量的符号信息,它是你的工程文件里最大的文件。 如果你的磁盘空间有限,你就希望能将这个你从没使用过的工程文件中的.pch文件删除。执行程序时并不需要它们,且随着工程文件的重新建立,它们也自动地重新建立。

    标签: stdafx

    上传时间: 2021-05-19

    上传用户:1155

  • 《链接:网络新科学》

    在本书中,作者生动地讲述了相互联系的系统的历史:从瑞士数学家莱奥哈尔德·欧拉18世纪末对图论的开创性研究,至现代生物学家基于对细胞网络的了解而展开的治疗癌症药物的研究等。本书的思想核心是:链接是无处不在的,复杂网络的本质是无尺度网络。抓住复杂网络中的枢纽节点,是我们处理复杂数据的基本原则,也是人工智能背后的深度神经网络的重要基础。

    标签: 互联网

    上传时间: 2021-09-16

    上传用户:清川澹如此