障碍物问题 在变分不等式和自由边界问题的数学研究中,障碍问题是一个经典的激励例子。 问题是找到弹性膜的平衡位置,该弹性膜的边界保持固定,并且被限制在给定的障碍物上方。 它与极小曲面的研究以及势论中集合的容量的研究密切相关。 应用包括研究多Kong介质中的流体过滤、约束加热、弹塑性、最优控制和金融数学。 请参阅。
1
Book Description: Solve your C programming problems with practical and informative recipes. This book covers various aspects of C programming including the fundamentals of C, operators and expressions, control statements, recursion, and user-defined functions. Each chapter contains a series of recipes that you can easily reference to quickly find the answers you are looking for. C Recipes also contains recipes and solutions for problems in memory management, arrays, standard input and output, structures and unions, pointers, self-referential structures, data files, pre-processor directives, and library functions. What You Will Learn Master operators and expressions Write user-defined functions Work with structures and unions Use pointers Define self referential structures Leverage library functions Who This Book Is For Those with some experience in C programming.
2022-04-29 11:03:10 6.02MB C语言
1
leetcode中国 爬取 LeetCode中国 题目 简介 爬取 LeetCode 题目描述,并存储为 markdown 或 txt 文件。支持指定状态、难度和语言的题目描述。(后续还会更新对爬取指定标签的题目的支持,以及题目点赞、通过人数等数据的爬取) 环境 基于 Python3 运行,依赖库: requests html2text argparse 可以通过执行以下指令来安装所需模块。 pip install -r requirement.txt 说明 python main.py [-h] [-d {1,2,3}] [-l {zh-CN,en}] [-s {ac,notac,null}] [-f {md,txt}] path 必选参数: path 输出文件夹 可选参数: -h, --help 显示此帮助并退出 -d {1,2,3}, --difficulty {1,2,3} 选择题目的难度, 否则所有难度的题目都会被爬取, "1"为简单难度, "2"为中等难度 以及"3"为困难难度. -l {zh-CN,en}, --language {zh-CN,en} 选择题目描述的语言,
2022-04-13 14:05:54 16KB 系统开源
1
Richard W. Cottle,Jong-Shi Pang,Richard E. Stone Paperback: 789 pages Publisher: Society for Industrial & Applied Mathematics (July 28, 2009) Language: English ISBN-10: 0898716861 ISBN-13: 978-0898716863 Product Dimensions: 6.8 x 1.6 x 9.7 inches 研究游戏物理引擎的同学不要错过啊。
2022-04-10 07:22:12 7.34MB LCP 数学 物理引擎
1
PyTorch Recipes _ A Problem-Solution Approach This book is intended for data scientists, natural language processing engineers, artificial intelligence solution developers, existing practitioners working on graph computation frameworks, and researchers of graph theory. This book will get you started with understanding tensor basics, computation, performing arithmetic-based operations, matrix algebra, and statistical distribution-based operations using the PyTorch framework.
2022-03-13 11:30:00 14.69MB PyTorch
1
旅行商问题,TSP问题(Travelling Salesman Problem)规约矩阵法实现,有详细注释,可以使用,结果保存在工程的txt文件中
2022-03-08 00:11:00 3.31MB 旅行商 TSP 规约矩阵
1
Algorithm_Problem
2022-02-25 21:00:43 59KB Python
1
The traffic assignment problem - Models and Methods (Michael Patriksson)
2022-02-24 16:13:38 2.8MB 交通分配
1
tsp问题matlab代码步骤旅行商问题 目的与总结 使用约束生成法解决美国48个州的首都 Dantzig-Fulkerson-Johnson公式具有2 ^ n-2子轮廓消除约束,这使该问题在计算上难以解决。 对于48个城市的问题,将存在2 ^ 48-2 = 281,474,976,710,654(281万亿)次子行程消除约束。 因此,我们使用约束生成方法来生成问题并向该问题添加约束,直到找到解决方案为止。 对于使用Mosel(Xpress)代码的48个城市(美国48个州首府)的游览,此方法可在2分钟内收敛为解决方案。 使用相同的方法,还可以解决26个城市的旅行问题。 文件: TSP-DFJ-48.mos:48城市旅游的Mosel代码 TSP-DFJ-26.mos:26城市旅游的Mosel代码 US48.dat:美国48个州首府的坐标 US26.dat:在美国随机选择的26个州首府的坐标 tourmap_48.png:48个城市游览的地块 tourmap_26.png:26个城市游览的地块 US48TourPlot.m:Matlab代码以绘制使用Mosel代码生成的48个城市游览 US
2022-02-18 22:46:11 118KB 系统开源
1