READINPUT Summary of this function goes here Detailed explanation goes here load --> .mat
0001 function [ M ] = readInput( filePathName ) 0002 %READINPUT Summary of this function goes here 0003 % Detailed explanation goes here 0004 % load --> .mat 0005 M = load(filePathName); 0006 end 0007