- Category:
- matlab
- Tags:
-
[Matlab]
[源码]
- File Size:
- 249kb
- Update:
- 2017-07-07
- Downloads:
- 0 Times
- Uploaded by:
- 吴炳福
Description: function [TrainingTime, TestingTime, TrainingAccuracy, TestingAccuracy] = LSM(Inputs, Targets, No_of_Output)
a1=[];
a2=[];
a3=[];
a4=[];
%%%%%%%%%%%%% Selecte training set randomly
a = Inputs;
b = Targets;
c = [ b' a'];
[M,N] = size(c);
id = randperm(M,floor(0.7*M)).';
train1 = c(id,:);
c(id',:) = [];
test1 = c;
To Search:
File list (Check if you may need any files):
LSM
LSM\bvgbhhh.mat
LSM\LSM.m