资源简介
一种用遗传算法优化支持向量机参数的简单matlab程序,非常适合初学者学习。
代码片段和文件信息
#include
#include
#include
#include
#include
#include
#include
#include “svm.h“
int libsvm_version = LIBSVM_VERSION;
typedef float Qfloat;
typedef signed char schar;
#ifndef min
template inline T min(T xT y) { return (x #endif
#ifndef max
template inline T max(T xT y) { return (x>y)?x:y; }
#endif
template inline void swap(T& x T& y) { T t=x; x=y; y=t; }
template inline void clone(T*& dst S* src int n)
{
dst = new T[n];
memcpy((void *)dst(void *)srcsizeof(T)*n);
}
inline double powi(double base int times)
{
double tmp = base ret = 1.0;
for(int t=times; t>0; t/=2)
{
if(t%2==1) ret*=tmp;
tmp = tmp * tmp;
}
return ret;
}
#define INF HUGE_VAL
#d
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 62422 2011-01-05 09:45 svm.cpp
----------- --------- ---------- ----- ----
62422 1
- 上一篇:image 遥感图像分割
- 下一篇:matlab-goat
相关资源
- GAPSO 这个算法是遗传算法和粒子群优
- svm_matlab 用SVM算法实现聚类与分类的例
- GA-RBF
- PCA_SVM 此方法采用经典的PCA对人脸图像
- PCA-SVM
- pso-bp
- pso_matlab PSO算法
- HSOGA 《求解全局优化问题的混合自适
- my_ga_test1 该用matlab 实现的遗传算法可
- matlab 为大家提供方便
- ABC 是属于人工蜜蜂群优化算法的源代
- NSGA matlab编写的基于粒子群优化算法的
- pcasvm1
- SMO
- algorithms 我个人收集的各类智能算法
- libsvm-cg 支持向量机参数c和g的优化
- FaceRec 基于matlab2008的人脸识别系统
- SVDD LIBSVM中的SVDD(Support vector data de
- hunhedongli 混合动力汽车(HEV)是在电
- Professor-Lu-Wusheng-lecture 陆吾生教授是加
- Yale_5G Yale
- fsvmPpca-face-Recognition 首先用PCA对ORA人脸
- gabor-pca 本程序是先用gabor小波变换对
- gadaima 用于遗传算法优化问题
- DCT 先用小波变换进行降维后
- Artificial-Bee-Colony 人工蜂群算法解决函
- face-recognition
- MOPSO-matlab
- OptimalControlOfWindPowerGeneration 《风力发
- bpcross 一个matlab写的bp人工神经网络程
评论
共有 条评论