-
大小: 1KB文件类型: .zip金币: 1下载: 0 次发布日期: 2021-03-20
- 语言: Matlab
- 标签: 多分类 SVM MATLAB multiclass
资源简介
matlab多分类程序,基于SVM,m文件
代码片段和文件信息
function [test_targets coding_matrix] = multiclass(train_patterns train_targets test_patterns params)
% Multiclass classification using two-class classification
%
% train_patterns - Train patterns
% train_targets - Train targets
% test_patterns - Test patterns
% params - [Type of matrix balance classes? classification algorithm algorithm parameters]
% The type of matrix can be:
% OAA - One against all
% all-pairs
% Hamming
% If the balance classes flag is set the examples in the two-class
% problems will be replicated so as to form
% approximately balanced classes
%
%Outputs
% test_targets - Predicted targets
% coding_matrix - The coding matrix used
[matrix_type balance class_alg class_alg_params] = process_params(params);
Uc = unique(train_targets);
Nc = length(Uc);
switch lower(matrix_t
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 4456 2020-11-15 07:27 multiclass.m
相关资源
- matlab EMD 降噪方法
- 最大功率跟踪(MPPT)爬山法的控制模
- 一个简单的DCO- OFDM 代码
- MATLAB实现的AES加密和解密算法
- STKalman 强跟踪滤波器的MATLAB函数文件
- 下垂控制的模型(droop control)
- 四旋翼模型 (Modle of quadrotor)
- 惯性导航系统的matlab工具箱
- 随机海浪仿真 (random wave simulation)
- matlab vvvf交直交变频器模型
- 对称分量法正负序分离
- ICA算法和FASTICA算法
- matlab指纹(fingerprint)识别
- SINS设计与仿真
- 遗传算法和粒子群算法代码(pso ga)
- matlab演化博弈仿真程序
- matlab频谱三维图
- 遗传算法求解VRP问题
- 分布式电源接入配电网matlab不确定性
- 相对完整的OFDM通信系统的仿真设计
- matlab信道模型
- DBN的源码
- 遗传算法求解电力系统机组组合问题
- matlab机动微弱目标检测前跟踪
- matlab仿真的脉冲时滞分数阶多智能体
- matlab-garch 用于时间序列金融模型分析
- SFLA-LSSVM 混洗蛙跳算法优化最小二乘支
- matlab分数阶混沌程序
- LE 拉普拉斯特征映射算法
- 霍夫变换圆检测的MATLAB程序
评论
共有 条评论