您好,歡迎來(lái)電子發(fā)燒友網(wǎng)! ,新用戶?[免費(fèi)注冊(cè)]

您的位置:電子發(fā)燒友網(wǎng)>源碼下載>數(shù)值算法/人工智能>

遺傳算法的源代碼

大小:3445 人氣: 2010-02-09 需要積分:0
那些年兒ing的空間

用戶級(jí)別:注冊(cè)會(huì)員

貢獻(xiàn)文章:

貢獻(xiàn)資料:

遺傳算法的源代碼:Functions:

?mexFunction, eqn.

?
? Functions adapted from 'Numerical Recipes in C':
?
?mrqcof, mrqmin, covsrt, gaussj, vector, matrix, ivector, free_ivector,
?free_vector, ree_matrix, nerror.
?
?
*/?

#include
#include
#include
#include "mex.h"

#define SWAP(a,b) {float temp=(a);(a)=(b);(b)=temp;}

/* gateway routine */
void mexFunction(
?int nlhs, Matrix *plhs[],
?int nrhs, Matrix *prhs[])
/*void mexFunction(nlhs,plhs,nrhs,prhs)
int nlhs;
Matrix *plhs[];
int nrhs;
Matrix *prhs[];*/
{?
?
?double *xp,*ap,*yp,*sigp,*ndatap,*mfitp,*map,*listap;
?float alamda,**covar,chisq,oldchisq,**alpha,**matrix(),*vector(),*x,*y,*sig;
?double *xout;
?float a[31];
?int mfit,ma,ndata,lista[31],ctr,maxit,npar,vecl,count;
?void ree_matrix(),free_vector();
?void mrqmin();
?void (*funcs)();
?void eqn();
?Matrix *strptr[1];

非常好我支持^.^

(4) 100%

不好我反對(duì)

(0) 0%

      發(fā)表評(píng)論

      用戶評(píng)論
      評(píng)價(jià):好評(píng)中評(píng)差評(píng)

      發(fā)表評(píng)論,獲取積分! 請(qǐng)遵守相關(guān)規(guī)定!

      ?