代码搜索:RS编码

找到约 10,000 项符合「RS编码」的源代码

代码结果 10,000
www.eeworm.com/read/488556/6489525

sql proc_收款.sql

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/484974/6569760

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/478849/6705146

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/478849/6705158

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/263553/11357411

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/408618/11379174

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/408523/11383905

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/408523/11383910

txt contents.txt

遗传算法程序 主要程序 ga.m 遗传算法核心程序 BinaryExample.m 二进制编码应用程序 FloatExample.m 浮点编码的应用程序 相关算子及函数 initializega.m 种群初始化函数 simpleXover.m
www.eeworm.com/read/408136/11404735

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/407395/11419901

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