7 Given a set of m observations of the n features of the obj
7. Given a set of m observations of the n features of the objects consider the cases when m>n, m=n and m<n. For each case give the maximum and minimum of the number of dimensions that you could consider.
Solution
m>n
minimum = n
maximum = m
m=n
minimum = maximum = m
m<n
minimum = m
maximum = n
