代码搜索:RS编码
找到约 10,000 项符合「RS编码」的源代码
代码结果 10,000
www.eeworm.com/read/217486/14960277
m bianma1.m
function y=bianma1(r,T,t)
%编码器
if r==1&T==1
Z=2;
elseif r==1&T>1
Z=1;
elseif r>1&T==1
Z=1;
else
Z=0;
end
y=6440*(r-1)+40*(T-1)+t-Z;
www.eeworm.com/read/217486/14960298
asv bianma1.asv
function y=bianma1(r,T,t)
%编码器
if r==1&T==1
Z=2;
elseif r==1&T>1
Z=1;
elseif r>1&T==1
Z=1;
else
Z=0;
end
y=6440^(r-1)+40^(T-1)+t-Z
www.eeworm.com/read/211362/15182362
m b2f.m
function [B,len,v]=B2F(sol,bounds)
%[B,len]=B2F(x,bounds) 二进制编码函数
%x 编码向量如x=[6 8 9];
%bounds 边界约束ru如bounds=[4 8 ;3 11;6 12;];
%B
www.eeworm.com/read/208848/15234335
m b2f.m
function [B,len,v]=B2F(sol,bounds)
%[B,len]=B2F(x,bounds) 二进制编码函数
%x 编码向量如x=[6 8 9];
%bounds 边界约束ru如bounds=[4 8 ;3 11;6 12;];
%B
www.eeworm.com/read/208655/15239816
txt readme.txt
遗传算法应用程序使用说明:
1.安装MATLAB5.X;
2.建立目录:(c:\GeneticProgram),并将这里提供的所有源程序拷入该目录;
3.运行(c:\GeneticProgram)中的 startup;
4.在MATLAB Command Window内直接运行程序 FloatExample和BinaryExample。
FloatExample和BinaryExa
www.eeworm.com/read/208655/15239821
txt contents.txt
遗传算法程序
主要程序
ga.m 遗传算法核心程序
BinaryExample.m 二进制编码应用程序
FloatExample.m 浮点编码的应用程序
相关算子及函数
initializega.m 种群初始化函数
simpleXover.m
www.eeworm.com/read/205389/15316979
m nninit.m
% BP网络初始化:给出网络的训练样本P、T,
% 输入、输出数及隐含神经元数R,S2,S1
function [P,T,R,S1,S2,S]=nninit
p=[0 0 0 0 0;
1 0 0 0 1;
0 1 0 0 1;
0 0 1 0 0;
0 0 0 1 0];
P=p';
t=[0 0 0 0;
1 0 0 0;
0 1 0
www.eeworm.com/read/160745/5566004
proc_-i+
IF EXISTS (SELECT NAME FROM SYSOBJECTS WHERE NAME='PROC_收款' AND TYPE='P')
DROP PROC PROC_收款
GO
create PROC PROC_收款
@客户编码 VARCHAR(10)
as
DECLARE @凭证号 INT, @实收金额 NUMERIC
declare PP1 SCROLL cur
www.eeworm.com/read/475596/6774100
m b2f.m
function [B,len,v]=B2F(sol,bounds)
%[B,len]=B2F(x,bounds) 二进制编码函数
%x 编码向量如x=[6 8 9];
%bounds 边界约束ru如bounds=[4 8 ;3 11;6 12;];
%B
www.eeworm.com/read/174047/9611203
txt readme.txt
批量将汉字转换为拼音、五笔的编码
转载请注明来源:
开源盛世-源代码下载网
www.vscodes.com