资源列表
二维混凝土骨料随机投放代码及ABAQUS参考资料
- 混凝土随机骨料投放matlab程序,主要用于生成混凝土粗骨料随机分布的二维几何模型。还有ABAQUS参考书籍及学习代码。(The random aggregate concrete matlab program is mainly used to generate a two-dimensional geometric model of the random distribution of concrete coarse aggregate. There are also ABAQUS refe
bingwangdanxiang
- 单相逆变器进行闭环并网仿真,输出电流理想(Single-phase inverter closed-loop grid connection simulation, ideal output current)
Gaussian_beam_focusing
- 使用matlab语言对高斯光束通过薄透镜聚焦仿真(Gaussian beam focusing)
基于BP神经网络的色空间转换
- 本案例为基与bp神经网络对pantone色卡中RGB空间向Lab空间转换的源码,并已经调试成功输入层输出层函数与神经元个数。附加功能:直接得出各色块的Eab色差已经测试样本与预测样本的相关系数。经多次实验,相关色差在2~3之间,低于CIE认可标准:4,相关系数达到0.96以上,可以准确预测绝大多数色块,用于色彩管理建模。(This case is for color space converting(RGB Space to Lab Space) You can master how to u
仙侣情缘浙大版
- 很经典的西游类MUD游戏,浙大版,寄托了很多人美好的回忆。(Very classic Western MUD game fairy couple love.)
信息论01
- 此代码为计算离散随机变量的熵、联合熵、条件熵、互信息的 Matlab 程序(This code is a matlab program for calculating entropy, joint entropy, conditional entropy and mutual information of discrete random variables)
hydra-8.1-windows
- 暴力破解软件,用过的都说好,不信你试试看?(i dont know english ,so please translate the chinses into english ,thank you)
ga_elman
- 采用matlab语言实现了遗传算法对elman神经网络的优化,固定了权阈值参数,大家可以试试(The optimization of Elman neural network by genetic algorithm is realized with MATLAB language, and the weight threshold parameters are fixed. You can try it)
Sentiment Analysis1
- 读取csv或xlsx文件后对文本信息进行NLP情感分析并计算出情感的得分,越接近1越积极,越接近-1越消极(After reading the CSV or xlsx file, NLP sentiment analysis is performed on the text information and the score of sentiment is calculated. The closer to 1, the more positive, the more close to - 1,
有限元分析ANSYS理论与应用第三版
- 此书包含固体力学,热传导、流体力学等教程。(This book includes solid mechanics, heat conduction, fluid mechanics, etc)
迷宫问题
- 用C++语言实现在迷宫中寻找出路。 核心算法伪代码: do{ 如果当前位置为出口: 当前位置进栈; return 1; while(尝试的方向小于4) { 尝试方向号码对应方向的格子; 如果这个格子是没走过的通路: 当前位置进栈; 将地图上的这个位置标记为走过的; 切换试探的方块为新的当前位置; 跳出这层循环; 否则: 方向号码增加1; } 如果当前位置的四周没有路了: 地图上的当前位置标记成走过的; 出栈; }while(栈不空或者还有方向没试探完);(Using C + + l
线性表
- 某软件公司年初有n名员工,每名员工有姓名、职务、工号等属性,现在该公司还有共m次操作,分别对应了员工的入职、离职、查询。现在请把所有员工建立一个线性表,建立离职、入职、查询函数,当有员工离职或入职时,修改线性表,并且根据输出格式中的要求输出。(A software company has n employees at the beginning of the year. Each employee has the attributes of name, job, job number, etc.