Plots the overlap of membership degrees in a matrix as a function of a threshold.

measure(x, min = 0, max = 1, step = 0.1)

Arguments

x

A matrix of membership degrees.

min

Minimum threshold value for the plot (default is 0).

max

Maximum threshold value for the plot (default is 1).

step

Step size for the threshold values (default is 0.1).

Value

No return value, it plot the overlap as a function of the threshold.

Examples

membership_matrix <- matrix(runif(20), nrow = 5)
measure(membership_matrix, min = 0, max = 1, step = 0.2)