Username Remember Me?
Password   forgot password?
   
   
getname for sdClassifiers
Posted: 21 July 2010 11:16 AM   [ Ignore ]  
Newbie
Rank
Total Posts:  9
Joined  2010-06-17

Hi Pavel,

For plotting purposes I would like to obtain the name of sdClassifiers:

getname(sdlinear)
ans =

‘’
getname(ldc)
ans =

Bayes-Normal-1

Profile
 
 
Posted: 21 July 2010 11:46 AM   [ Ignore ]   [ # 1 ]  
Administrator
Avatar
RankRankRankRank
Total Posts:  236
Joined  2008-04-26

Hi Carlas,

you can get a name for a trained pipeline, not for untrained one:

>> p=sdlinear(a)
sequential pipeline     2x3 'Linear discriminant'
 
1  Gauss eq.cov.           2x3  3 classes3 components (sdp_normal)
 
2  Output normalization    3x3  (sdp_norm)
>> 
getname(p)

ans =

Linear discriminant

>> getname(sdlinear)

ans =

     
''

Pavel

Profile
 
 
Posted: 21 July 2010 11:50 AM   [ Ignore ]   [ # 2 ]  
Newbie
Rank
Total Posts:  9
Joined  2010-06-17

Ok thanks!

Profile