
Contents |
Normalize the input vector
| Display Name | Variable Name | I/O and Type | Default Value | Description |
|---|---|---|---|---|
| Input | ix |
Input vector | |
Specify the input vector data. |
| Total Data Info | datainfo |
Input TreeNode | <unassigned> |
This is for displaying the data infomation in the dialog. |
| Normalize Methods | method |
Input int | |
Specify the method used to normalize the data.
|
| User Defined Value | val |
Input double | |
This variable is available only when method is set to specify. It specifies the value used to divide the input vector. |
| Output | ox |
Output vector | |
Specify the output for the normalized vector. |
This function performs normalization to a vector.
To normalize the second column by dividing the mean, and output result to a new column, type the following in the Command Window:
vnormalize ix:=Col(4) method:=Mean ox:=<new>;
Suppose V is the input vector, and α is a user defined value, the normalized vector,
can be computated as follows:
Divided by a specific value
normalize to [0, 1]:
Transfer to N(0, 1):
Divided by Max:
Divided by Min:
Divided by Mean:
Divided by Median:
Divided by Standard Derivation:
Divided by Norm:
Divided by Mode (the element that appears most often in the input vector):
Divided by Sum: