문제

Is there any Matlab function to directly convert nominal data to numeric one ?

N.b that currently, and after several searches, I use NumericGroup=str2num(char(NominalGroup))

Thanks,

도움이 되었습니까?

해결책

double(NominalGroup) will convert a nominal/categorical array to a double array.

다른 팁

Using the double function is dangerous because it returns the category index of the NominalValue.

Example:

color = categorical({'8','9','0'})
x = color(1)  % x = 8
z = double(x) % z = 2

I have been loking for a function that gives me z = 8.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top