代码搜索:iterative
找到约 624 项符合「iterative」的源代码
代码结果 624
www.eeworm.com/read/169283/9869166
c iterative.c
#include
#include
#include
#include
using namespace std;
//SOR迭代法解线性方程组
double* SOR_FA(double** a,double* x,double* b,int n)
{const int max=1000;
www.eeworm.com/read/458772/7289618
asv iterative.asv
function [individuals,avgfitness,bestfitness,bestchrom] = iterative(individuals,maxgen,sizepop,fselect,fcode,pcross,fcross,pmutation,fmutation,lenchrom,bound,bestfitness,bestchrom)
%对每个种群进行100次遗传算法操作
www.eeworm.com/read/458772/7289623
m iterative.m
function [individuals,avgfitness,bestfitness,bestchrom] = iterative(individuals,maxgen,sizepop,fselect,fcode,pcross,fcross,pmutation,fmutation,lenchrom,bound,bestfitness,bestchrom)
%对每个种群进行100次遗传算法操作
www.eeworm.com/read/130186/5963470
java iterative.java
/*
*
* Copyright (c) 2003 Dragos Manolescu (dam@micro-workflow.com)
*
* See the LICENSE file for licensing information.
*/
package com.microworkflow.process;
import com.microworkflow.execu
www.eeworm.com/read/289743/8529912
m iterative_spca.m
function a_next = iterative_spca(x, a_current, output)
%ITERATIVE_SPCA Performs single SPCA iteration
%
% a_next = iterative_spca(x, a_current, output)
%
% Performs single SPCA iteration. This
www.eeworm.com/read/282683/9074155
m iterative_spca.m
function a_next = iterative_spca(x, a_current, output)
%ITERATIVE_SPCA Performs single SPCA iteration
%
% a_next = iterative_spca(x, a_current, output)
%
% Performs single SPCA iteration. This
www.eeworm.com/read/379807/9175703
m iterative_f.m
function x=iterative_f(A,b,x0,tol,max,w,method)
% inputs;
% A coefiecient matrix(n_by_n);
% b right_hand side(n_by_1);
% x0 initial solution(n_by_1);
% tol stop if no
www.eeworm.com/read/461010/7235870
m iterative_waterfill.m
%Sum Power Iterative Waterfilling Algorithm
%Authors: Nihar Jindal, Wonjong Rhee, Sriram Vishwanath, Syed Jafar, Andrea
%Goldsmith
%Date: 6/20/05
function [capacity, Covariances] = iterative_waterfi
www.eeworm.com/read/445917/7588130
m iterative_selector.m
function [numIterationsIdeal, MSE] = iterative_selector(r, s, w_av, numAlgSearchIterations)
for i = 1:size(w_av,2)
estimated_signal(:, i) = w_av(:, i)' * r;
estimated_signal(:, i) = estim
www.eeworm.com/read/434922/7800289