CPart                  package:FKBL                  R Documentation

_C_r_e_a_t_e_s _a _f_u_z_z_y _p_a_r_t_i_t_i_o_n

_D_e_s_c_r_i_p_t_i_o_n:

     This is the implementation in R of a fuzzy partition, described
     in, chapter 1, pages 005-009 at Ishibuchi et al. . It has a sister
     function, with different parameter, but with the same objective.
     It provides a wrapper to create the appropriate list with the
     appropriate codes. A partition is defined by a set of values which
     mark the limits and top point of every triangular division. The
     divisions are in a chain, the left and right limit of a division,
     are the top points of its neighbors. And in the same way, the top
     point of a given partition is the limit of its neighbors.
     Graphically this is a succession of mixed triangles, where the
     projection of a height of a given triangle marks the point where
     two triangles join.

_U_s_a_g_e:

      CPart(elem, min, max)

_A_r_g_u_m_e_n_t_s:

     Takes the number of elements and the minimum and maximum value of
     the  partition.

    elem: The number of elements of the partition.

     min: The minimum value of the partition.

     max: The maximum value of the partition.

_V_a_l_u_e:

     Returns a list, the first three elements (numElem, numMin and 
     numMax) are the arguments given to the function. The fourth one,
     is the  actual partition.

     list(numMin=x1, numMax=x2, part=x3, numElem=x5)

_E_x_a_m_p_l_e_s:

      CPart(3,0.0,1.0) # 0.0 0.5 1.0

