-
形态学处理
腐蚀– 腐蚀是一种消除边界点,使边界向内部收缩的过程。– 可以用来消除小且无意义的物体 膨胀–膨胀是将与物体接触的所有背景点合并到该物体中,使边界向外部扩张的过程。–可以用来填补物体中的空洞
- 2022-08-13 13:13:17下载
- 积分:1
-
An optimization method introduction courseware, in great detail. From the simple...
一个介绍最优化方法课件,很详细。从最简单的一维搜索到共轭梯度,最速下降法等等,都有说明-An optimization method introduction courseware, in great detail. From the simplest one-dimensional search to the conjugate gradient, steepest descent method, etc., all indicate
- 2022-02-16 03:56:12下载
- 积分:1
-
求循环小数
对于任意的真分数 N/M ( 0 < N
- 2022-05-31 02:22:57下载
- 积分:1
-
VB中不使用 on error goto的容错程序。
VB中不使用 on error goto的容错程序。-not use VB on the fault-tolerant error goto procedures.
- 2022-02-26 22:14:59下载
- 积分:1
-
lt; Lt; C
< C语言数值算法程序大全>>配套程序-lt; Lt; C-language algorithm procedures Daquan gt; Gt; Supporting procedures
- 2023-08-30 09:15:03下载
- 积分:1
-
隐式曲面求解的源代码,用户可以输入隐式曲面,得到mxmxm的网格数据...
隐式曲面求解的源代码,用户可以输入隐式曲面,得到mxmxm的网格数据-Implicit surface to solve the source code, users can enter implicit surface, the grid data mxmxm
- 2022-05-17 08:28:55下载
- 积分:1
-
新型GA算法
一种好的改进遗传算法function [opy,optimy]=GA(pt,gennum,psize)% 输入参数:% pt m*n的加工时间矩阵(n是工件数目,m是机器数目)由已知给的T矩阵,可得n=100,m=10% gennum 迭代的次数(代数)% psize 种群的规模大小%输出参数:% opy 最优的Makespan值pc=0.9;%交叉因子pm=0.1;%变异因子[m,n]=size(pt);current_gen=1;%current_gen means the current generationnewgen=zeros(psize,n+1); %mewgen is the new generation of the populationnewgen(1:psize,1:n)=rand(psize,n);%主种群初始化,0-1之间的随机数 %Generalize the initial groupfather=zeros(2,n); %father is used to store the two genes for crossover and mutation avgen=zeros(1,gennum); %avgen is the matrix of the average of all the generationsoptimx=zeros(1,n);optimy=ones(1,gennum);%Generalize the initial groupfor i=1:psize [Ya,pop(i,1:n)]=sort(newgen(i,1:n));%种群排序,实数编码转换为自然数编码 随机生成的0-1之间的小数进行排序然后取每个从小到大数对应的位置 newg
- 2022-03-18 14:25:18下载
- 积分:1
-
加减乘除24,java的GUI界面,输入的数字在1
加减乘除24,java的GUI界面,输入的数字在1-13的范围内,产生的结果中已去除了冗余的结果,并统计产生结果的个数.- The arithmetic operations 24, java GUI contact surface, the
input numeral in 1-13 scope, in the result which produces has removen
the redundancy result, and the statistics has the result integer
- 2022-02-26 00:51:20下载
- 积分:1
-
梯度下降
梯度下降法,需要安装numpy库,示例是二位的点进行拟合。将注释去掉就可以完整运行。根据网上的梯度下降算法公式编写完成。可以自己扩展到多维的数据点进行拟合
- 2022-02-01 03:57:04下载
- 积分:1
-
importation of X, Y coordinates, fitting Park, using the least square fitting, I...
输入X,Y坐标,拟合公园,采用最小二乘法拟合,本人测试
- 2022-03-28 16:44:06下载
- 积分:1