How can I normalize data between 0 and 1 ? I want to use logsig...
Show older comments
All is in the question: I want to use logsig as a transfer function for the hidden neurones so I have to normalize data between 0 and 1. The mapminmax function in NN tool box normalize data between -1 and 1 so it does not correspond to what I'm looking for.
Accepted Answer
More Answers (4)
Jurgen
on 15 May 2013
NDATA = mat2gray(DATA);
2 Comments
JohnDylon
on 8 Oct 2016
Is this exactly a min-max normalizaton?
Greg Heath
on 8 Oct 2016
Edited: Greg Heath
on 8 Oct 2016
Why not just try it and find out?
close all, clear all, clc
[ x1 , t1 ] = simplefit_dataset;
DATA1 = [ x1, t1 ];
DATA2 = [ x1; t1 ];
whos DATA1 DATA2
minmax1 = minmax(DATA1)
minmax2 = minmax(DATA2)
minmaxMTG1 = minmax( mat2gray(DATA1) )
minmaxMTG2 = minmax( mat2gray(DATA2) )
Hope this helps.
Greg
Abhijit Bhattacharjee
on 25 May 2022
As of MATLAB R2018a, there is an easy one-liner command that can do this for you. It's called NORMALIZE.
Here is an example, where a denotes the vector of data:
a_normalized = normalize(a, 'range');
1 Comment
shazia
on 10 Aug 2023
How about denormalization what comand should we use to denormalize after training to calculate the error. please guide
Greg Heath
on 11 May 2017
Edited: Greg Heath
on 11 May 2017
I like to calculate min, mean, std and max to detect outliers with standardized data (zero mean/unit variance). For normalization and denormalization I just let the training function use defaults
tansig and linear
however, if the ouput is naturally bounded use
tansig and tansig
or
tansig and logsig
In short, unless you are plotting you don't have to worry about anything except outliers.
Hope this helps.
Greg
Angus Steele
on 20 Sep 2017
function [ newValue ] = math_scale_values( originalValue, minOriginalRange, maxOriginalRange, minNewRange, maxNewRange )
% MATH_SCALE_VALUES
% Converts a value from one range into another
% (maxNewRange - minNewRange)(originalValue - minOriginalRange)
% y = ----------------------------------------------------------- + minNewRange
% (maxOriginalRange - minOriginalRange)
newValue = minNewRange + (((maxNewRange - minNewRange) * (originalValue - minOriginalRange))/(maxOriginalRange - minOriginalRange));
end
Categories
Find more on Define Shallow Neural Network Architectures 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!