Within the scikit-fuzzy_demo , in the first step of the exercise
1. Go back and re-calculate the relation using `fuzz.relation_min` instead of `fuzz.relation_product`
i get the following error:
/usr/local/lib/python2.7/dist-packages/scikit_fuzzy-0.1dev-py2.7.egg/skfuzzy/fuzzymath/fuzzy_ops.pyc in relation_min(A, B)
680 A = np.atleast_2d(A)
681 B = np.atleast_2d(B)
--> 682 return np.fmin(np.dot(A.T, np.ones((1, m))), np.dot(np.ones((n, 1)), B))
ValueError:
operands could not be broadcast together with shapes (71,71) (36,36)