Matlab method for constructing a range or vector by specifying start, end and number of wanted elements
the following is an anonymous function
rangeConstructor = @(starting,ending,num) starting:(ending-starting)/(num-1):ending
Matlab method for constructing a range or vector by specifying start, end and number of wanted elements
the following is an anonymous function
rangeConstructor = @(starting,ending,num) starting:(ending-starting)/(num-1):ending