I have used the trapezoidal membership function through matlab as shown here.
I have written the following in matlab:
>> x=1:5;
>> y=trapmf(x,[1 3 4 5]);
And, for y, I got the following results:
>> y
y =
0 0.5000 1.0000 1.0000 0
My questions are as follows:
How do we read the vector y shown above? Does it show the degrees of memberships for the elements in the set x?
For example, can we say the following?
- The degree of membership of
1in the setxis0 - The degree of membership of
2in the setxis0.5000. . .etc
Thanks.
