When running the example in @interval/gridPoints.m, I get the follow error
>> I = interval([1 2; -1 1]);
>> coordinates = gridPoints(I,10);
Unable to perform assignment because the size of the left side is 2-by-1 and the size of the right side is 2-by-2.
Error in interval/gridPoints (line 50)
coordinateMat(:,i) = startingPoint+(comb(i,:)'-1).*segLengthVec;
When running the example in @interval/gridPoints.m, I get the follow error