找回密码
 注册
关于网站域名变更的通知
查看: 439|回复: 1
打印 上一主题 下一主题

Malab安装libsvm时会遇到的一些坑

[复制链接]

该用户从未签到

跳转到指定楼层
1#
发表于 2020-3-9 10:44 | 只看该作者 |只看大图 回帖奖励 |倒序浏览 |阅读模式

EDA365欢迎您登录!

您需要 登录 才可以下载或查看,没有帐号?注册

x
9 S* h3 X# m7 P) c: j8 e; c, h1 K+ H
工作环境" _3 I  m, L3 r
  • 软件环境:Windows 7 Ultimate sp1、MatlabR2012b 32bit$ B) J6 ~# b$ p$ o8 }& \9 n

+ c2 k3 {6 T0 z; V; u( r7 o9 Q今天在使用matlab实现svm算法的时候,发现使用svmtrain函数报错:
1 E# a; ]2 q; Y2 SY must be a vector or a character array
7 q3 }: i. r& e: m) k立马help svmtrain看看是否少什么东西,命令执行结果如下:$ S: ]% b6 I/ [/ u1 B
" D  O0 Y" I7 T" l4 H
  • help svmtrain
  • svmtrain Train a support vector machine classifier
  •     SVMSTRUCT = svmtrain(TRAINING, Y) trains a support vector machine (SVM)
  •     classifier on data taken from two groups. TRAINING is a numeric matrix
  •     of predictor data. Rows of TRAINING correspond to observations; columns
  •     correspond to features. Y is a column vector that contains the known
  •     class labels for TRAINING. Y is a grouping variable, i.e., it can be a
  •     categorical, numeric, or logical vector; a cell vector of strings; or a
  •     character matrix with each row representing a class label (see help for
  •     groupingvariable). Each element of Y specifies the group the
  •     corresponding row of TRAINING belongs to. TRAINING and Y must have the
  •     same number of rows. SVMSTRUCT contains information about the trained
  •     classifier, including the support vectors, that is used by SVMCLASSIFY
  •     for classification. svmtrain treats NaNs, empty strings or 'undefined'
  •     values as missing values and ignores the corresponding rows in
  •     TRAINING and Y.
  •     ......../ @* h  S% K: _1 @( b* A
于是,网上找找资料,这一找不得了,发现大问题!按照参考文献的思路,应该是我的Matlab少了libsvm库,搞不好这个问题无解。幸好libsvm不是matlab自带的,而是需要下载编译的,需要的朋友可以从这https://www.csie.ntu.edu.tw/~cjlin/libsvm/下载。( D& y* W! e1 u8 @3 |2 I/ I

* F) X6 r, z( C. Y1 `& p
7 G% c7 r& b& G) L* e$ T5 ?! e% t) ?
" I/ [- R3 {$ B0 C4 D文件内容如下:0 ]! |, I* {. S" G7 O5 z) i
, H2 L; b! i' L
7 w& J# v; }, N" L- N& \

; R! ~/ U) x5 Y0 A下载下来的是源代码,需要经过编译,查看README.md,可以发现:: s% x3 A9 P( P- L5 p  Y
! P3 Q# T5 k! n( T, b' w: a
  • Example:
  •         matlab>> mex -setup
  •         (ps: MATLAB will show the following messages to setup default compiler.)
  •         Please choose your compiler for building external inteRFace (MEX) files:
  •         Would you like mex to locate installed compilers [y]/n? y
  •         Select a compiler:
  •         [1] Microsoft Visual C/C++ version 7.1 in C:\Program Files\Microsoft Visual Studio
  •         [0] None
  •         Compiler: 1
  •         Please verify your choices:
  •         Compiler: Microsoft Visual C/C++ 7.1
  •         Location: C:\Program Files\Microsoft Visual Studio
  •         Are these correct?([y]/n): y
  •         matlab>> make
  • On Unix systems, if neither make.m nor 'mex -setup' works, please use
  • Makefile and type 'make' in a command window. Note that we assume
  • your MATLAB is installed in '/usr/local/matlab'. If not, please change
  • MATLABDIR in Makefile.
    $ z4 k% q( ?5 U! @3 z$ n9 y7 r& d- _+ m
   
# i0 m8 [3 V0 y3 _: O$ q* U于是赶紧将libsvm压缩包扔到matlab/toolbox/下面,然后定位到libsvm3.23文件夹,输入mex -setup,& f0 e9 @+ p- `# t1 L: s. x6 l
7 _0 z( g( t* @$ |0 N2 P6 k
  • Select a compiler:
  • [1] Lcc-win32 C 2.4.1 in E:\1_PROG~1\MATLAB~1\sys\lcc
  • [0] None
  • Compiler: mex -setup
  • Please select from 0-1
  • Compiler:
  • Please select from 0-1
  • Compiler: 1
  • Please verify your choices:
  • Compiler: Lcc-win32 C 2.4.1
  • Location: E:\1_PROG~1\MATLAB~1\sys\lcc
    8 C! S1 e, o+ r. V5 S8 @, B
    ) T' }) e& \. I3 N3 l5 z
只有一个编译器!也就是matlab自带的编译器,于是只能选择该编译器,输入make,出来一堆错误:
2 Z; d1 {2 i/ w) q3 ~6 J* g' Z! `7 f1 \: V
  • >> make
  • Error ..\svm.cpp: 15  syntax error; found `<' expecting `;'
  • Error ..\svm.cpp: 15  skipping `<'
  • Error ..\svm.cpp: 15  syntax error; found `T' expecting `;'
  • Error ..\svm.cpp: 15  syntax error; found `>' expecting `;'
  • Error ..\svm.cpp: 15  skipping `>'
  • Error ..\svm.cpp: 15  syntax error; found `T' expecting `;'
  • Error ..\svm.cpp: 15  syntax error; found `min' expecting `;'
  • Error ..\svm.cpp: 15  syntax error; found `x' expecting `)'
  • Error ..\svm.cpp: 15  skipping `x' `,' `T' `y'
  • Error ..\svm.cpp: 15  undeclared identifier `x'
  • Error ..\svm.cpp: 15  undeclared identifier `y'
  • Warning ..\svm.cpp: 15   possible usage of x before definition
  • Warning ..\svm.cpp: 15   possible usage of y before definition
  • Error ..\svm.cpp: 18  syntax error; found `<' expecting `;'
  • Error ..\svm.cpp: 18  skipping `<'
  • Error ..\svm.cpp: 18  syntax error; found `T' expecting `;'
  • Error ..\svm.cpp: 18  syntax error; found `>' expecting `;'
  • Error ..\svm.cpp: 18  skipping `>'
  • Error ..\svm.cpp: 18  syntax error; found `T' expecting `;'
  • Error ..\svm.cpp: 18  syntax error; found `max' expecting `;'
  • Error ..\svm.cpp: 18  syntax error; found `x' expecting `)'
  • Error ..\svm.cpp: 18  skipping `x' `,' `T' `y'
  • Error ..\svm.cpp: 18  too many errors
  •   E:\1_PROG~1\MATLAB~1\BIN\MEX.PL: Error: Compile of '..\svm.cpp' failed.
  • Error: E:\1_Program_File\MatlabR2012b\toolbox\matlab\general\mex.m failed (line 206)
  • Unable to complete successfully.
  • => Please check README for detailed instructions.* R- N0 J: K$ |. C7 ^7 r* Q4 Z9 c
  
; L# ]# x; V* h1 E4 T( }原因是lcc 编译器不支持c++,要使得matlab能够编译c++文件的话,只能安装第三方编译器比如微软的vsstudio或者vc++6.0以及mingw-w64,由于vs或者vc比较大我就没再折腾,倒是下载了mingw-w64的离线版,(在线安装版本下载不下来),但是离线版下载下来之后解压缩,死活都配置不好,matlab中就是不显示该编译器!我电脑中其实也有一个cl编译器也不了解如何去配置。最后无果,只能找一个编译好的libsvm32位版本,据说是在winxp下面编译的,通用性应该不错,试了试,可以成功运行!$ l5 `4 d6 d4 O: ?: l7 ~
/ g( [1 j5 ^6 d) [8 i: L5 t

! F# K$ d! z3 D5 e2 ^  R5 D

该用户从未签到

2#
发表于 2020-3-9 17:32 | 只看该作者
Malab安装libsvm时的一些坑
您需要登录后才可以回帖 登录 | 注册

本版积分规则

关闭

推荐内容上一条 /1 下一条

EDA365公众号

关于我们|手机版|EDA365电子论坛网 ( 粤ICP备18020198号-1 )

GMT+8, 2025-10-6 03:18 , Processed in 0.140625 second(s), 26 queries , Gzip On.

深圳市墨知创新科技有限公司

地址:深圳市南山区科技生态园2栋A座805 电话:19926409050

快速回复 返回顶部 返回列表