Create a function that generates random arrays of integers beween <I>a</I> and <I>b</I>,
    inclusive.  Use the definition line
   
       function A = randhw(a,b,M,N)
      
    where a and b define the (inclusive) range and M and N define the size
    of the output array (rows and columns, respectively).
   
    a. Test your function with the following piece of code:
   
         x = randhw(10,17,100000,1);
         hist(x,10:17)

         
       The resulting histogram should be nearly flat from 10 to 17.  Pay particular
       attention to the endpoints of the distribution.
      
    b. Test your function with the following pieces of code:
   
         x = randhw(-30,5,100000,1);
         hist(x,-30:5)

         
         x = randhw(-45,-35,100000,1);
         hist(x,-45:-35)


         x = randhw(7,-2,100000,1);
         hist(x,-2:7)


       Consider that each of these uses is valid.

    c. Modify your code to allow for missing/default inputs.  Use the behavior of
       rand to help design your code.  You will need to use nargin in your
       routine.  For example, the function should be able to return
      
         - a 5-by-5 array of integers between 1 and 20:  e.g., A = randhw(1,20,5)
         - a single random integer between 10 and 50:    e.g., A = randhw(10,50)
         - an empty array if not enough inputs are provided.


이 시팔 이거 솔직히 뭔 말인지도 잘 모르겠고 난 솔직히 못 짜겠다...벌써 제출일보다 3일 늦었는데 뭐 어떻게 할 수도 없고 좃같다 그냥

근데 나 학교 나름 괜찮은 곳 다니고 있음...막 건홍동 이딴 학교 다니면서 좋다고 씨부리는거 아님...

근데 니들 시팔 이것도 못 하면 니넨 걍 플갤에서 다 꺼져...

참고로 할 줄 아시는 분은 증거코드 첨부하여 주시면 감사하겠습니다..ㅠㅠ