function Matrix = fzstar1 %This function called 'fzstar1' will %return a matrix back to the user that can %be graphed (or jimplot-ed)in order to test %programs designed to deal with 'fuzzy groups' %perimeter 1st closest fuzz (closest) M = []; %M is defined as a matrix M = [M; 1 0 30; 2 30 0; 3 0 -30; 4 -30 0; 5 10 10; 6 10 -10; 7 -10 -10; 8 -10 10; 9 0 0; 10 0.25 0; 11 0 -0.25; 12 -0.25 0; 13 0 0.25; 14 4.5 19.75; 15 19.75 4.5; 16 19.75 -4.5; 17 4.5 -19.75; 18 -4.5 -19.75; 19 -19.75 -4.5; 20 -19.75 4.5; 21 -4.5 19.75]; %specific points designed to test fuzzy are placed in matrix Matrix = M;