MATLAB SVMStruct(从svmtrain获得)保存在文件中并稍后读取

时间:2012-10-20 16:57:23

标签: matlab svm

有没有办法可以将SVMStruct(使用Matlab的svmtrain获得)写入文件,然后在需要时再读取它。我想这样做是因为我在训练数据后无法使用SVMclassify,这会导致内存不足。

1 个答案:

答案 0 :(得分:5)

您可以使用save保存:

svmstruct=svmtrain(........
save('file2save.mat','svmstruct');

load稍后重新加载:

load('file2save.mat','svmstruct');
svmclassify(svmstruct,.........