Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
svm_model.java
Package: svm-10.2.rar [view]
Upload User: kevin_zqn
Upload Date: 2022-06-28
Package Size: 510k
Code Size: 1k
Category:
matlab
Development Platform:
Matlab
- //
- // svm_model
- //
- package libsvm;
- public class svm_model implements java.io.Serializable
- {
- svm_parameter param; // parameter
- int nr_class; // number of classes, = 2 in regression/one class svm
- int l; // total #SV
- svm_node[][] SV; // SVs (SV[l])
- double[][] sv_coef; // coefficients for SVs in decision functions (sv_coef[k-1][l])
- double[] rho; // constants in decision functions (rho[k*(k-1)/2])
- double[] probA; // pariwise probability information
- double[] probB;
- // for classification only
- int[] label; // label of each class (label[k])
- int[] nSV; // number of SVs for each class (nSV[k])
- // nSV[0] + nSV[1] + ... + nSV[k-1] = l
- };