From 34bf9c05135421a09defa31ecb2a1b04a6da50f6 Mon Sep 17 00:00:00 2001 From: Sarvesh Prakash Nikumbh Date: Fri, 28 Jul 2017 17:48:47 +0200 Subject: [PATCH] Function help for standardizeMatrix function --- standardizeMatrix.m | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/standardizeMatrix.m b/standardizeMatrix.m index 58e4d87..19249ed 100644 --- a/standardizeMatrix.m +++ b/standardizeMatrix.m @@ -1,6 +1,19 @@ function stdM = standardizeMatrix(M) -%return a standardized version of matrix M where all entries are in range[0,1]. +% STANDARDIZEMATRIX +% Return a standardized version of matrix M where all entries are in range[0,1]. +% +% INPUT PARAMS +% Param M (matrix) +% Input matrix that is to be standardized +% +% OUTPUT PARAMS +% Param stdM (matrix) +% Output matrix +% +% ADDITIONAL NOTES +% +% Author: snikumbh@mpi-inf.mpg.de stdM = zeros(size(M)); mins = repmat(min(M,[],2), 1,size(M,2));