代码搜索结果
找到约 33,766 项符合
Algorithm 的代码
ica.m
function [features, targets, W] = ICA(features, targets, params, region)
%Reshape the data points using the independent component analysis algorithm
%Inputs:
% train_features - Input features
%
contents.m
% HMM's
% HMM_Backward - HMM backward algorithm
% HMM_Boltzmann - Find the transition matrices of an HMM using Boltzmann networks
% HMM_Decoding - Find probable states fro
loglikelihood.m
function ll = loglikelihood(theta, features, h, center_point, cp_target)
% Used by the polynomial fitting algorithm
[c,r] = size(features);
features = center_point * ones(1,r) - features;
plot_process.m
function plot_process(mu)
%Plot the mu's during an algorithm's execution
%Inputs:
% mu - The location of points
% No outputs
h = findobj('UserData','mu');
if (~isempty(h)),
delete(h
message
From: Kenji Rikitake
Subject: lzhuf.c (LHarc algorithm source code)
Dear Rahul,
Following is a source code of single-file compression/uncompresssio
poster
Subject: v02i042: C source for lharc's LZHuff compression algorithm
Summary: lzhsrc10.arc, C source for lharc's LZHuff compression algorithm
Date: 6 Apr 89 01:00:33 GMT
Posted: Wed Apr 5 20:00:33 198
gcd.c
/* A program to perform Euclid's
Algorithm to compute gcd. */
int gcd( int u, int v )
{
if( v == 0 )
return u;
else
return gcd( v, u-u/v*v);
/* u-u/v*v == u mod v */
}
void ma
strretalg.h
#ifndef STRRETALG_H
#define STRRETALG_H
#include "iotools.h"
#include "alias.h"
/**
class defines type of stress return algorithm
it contains all necessary informations about selected algorith
stl.h
// -*- C++ -*- compatibility header.
// This file is part of the GNU ANSI C++ Library.
#include
#include
#include
#include
#include
#include
#
readme
This package contains the Matlab source code of paper Q. Zhang, A. Zhou, Y. Jin. 'Modelling the Regularity in an Estimation of Distribution Algorithm for Continuous Multiobjective Optimisation with Va