Does the nprtool normalize inputs for you, or do you have to normalize the inputs before importing them?

2 views (last 30 days)
Hi
I have a question about the nprtool GUI.
Is it necessary to normalize the inputs before importing them into the tool? or does the tool normalize the inputs for you?
The tool gives you the option to load example data sets, such as iris flowers, wine vintage, types of glass and breast cancer.
The inputs to some of these example data sets do not appear to be normalized. Or are they? I can' tell.
Many thanks
John

Answers (1)

Greg Heath
Greg Heath on 1 Aug 2012
Edited: Greg Heath on 1 Aug 2012
Typically, input and target data need to be normalized.
To check for normalization calculate the summary statistics
minmax(input) % Check for identical mins and maxes
mean(input,2) % Check for zero means
std(input,0,2) % Ckeck for unit standard deviations
Hope this helps.
Greg

Categories

Find more on Biotech and Pharmaceutical in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!