SND_NORM_CVIP

snd_norm_cvip() - applies standard normal density normalization to a set of feature vectors in a matrix.

Contents

SYNTAX

a = snd_norm_cvip(vector)

Input Parameters include:

Output parameter include:

DESCRIPTION

This function normalizes a feature vector based on the standard normal density normalization method. The function calculates the standard deviation of the each feature vector and normalizes it.

REFERENCE

1. Scott E Umbaugh. DIGITAL IMAGE PROCESSING AND ANALYSIS: Applications with MATLAB and CVIPtools, 3rd Edition.

EXAMPLE

% Input vectors

 vectors = [1 3 6];

% Calling function

 a = snd_norm_cvip(vectors)
a =

   -0.9272   -0.1325    1.0596

CREDITS

Author: Norsang Lama, March 2017
Copyright © 2017-2018 Scott E Umbaugh
For updates visit CVIP Toolbox Website