B: Class of linear fuzzy sets to construct concept...

Description Usage Arguments Value References Examples

View source: R/B.R

Description

The are several famous fuzzy sets which have meaningful means and are user friendly for introducing. Several linear functions are constructed in this package for easily inspiration to the fuzzy concepts \ll approximately smaller \gg , \ll approximately bigger \gg and \ll approximately equal \gg. For example, function B is one of them which users can use it to construct the fuzzy concept \ll approximately bigger \gg in fuzzy hypotheses. As presented bellow, the membership function of fuzzy set B has two parameters a and b:

B(a,b)(x)=≤ft\{ \begin{array}{lcc} 1 &\ \ if & \ \ b ≤q x \\ \frac{x-a}{b-a} &\ \ if & \ \ a ≤q x <b \\ 0 &\ \ if & \ \ x <a \end{array} \right.

Usage

1
B(a, b)

Arguments

a

The first parameter of fuzzy set B(a,b). For better understanding, try to draw the above membership function.

b

The second parameter of fuzzy set B(a,b). For better understanding, try to draw the above membership function.

Value

This function convert a fuzzy hypothesis to its boundary which is a triangular fuzzy number. Therefore, although the input of this function is not triangular fuzzy number, but its output is triangular.

References

Parchami, A., Taheri, S. M., and Mashinchi, M. (2010). Fuzzy p-value in testing fuzzy hypotheses with crisp data. Statistical Papers 51: 209-226.

Parchami, A., Taheri, S. M., and Mashinchi, M. (2012). Testing fuzzy hypotheses based on vague observations: a p-value approach. Statistical Papers 53: 469-484.

Examples

1
2
3
4
5
6
7
# Introducing the fuzzy null hypothesis H0
H0 = B(1275,1325)


## The function is currently defined as
function (a, b) 
(TriangularFuzzyNumber(a, b, b))

Fuzzy.p.value documentation built on May 2, 2019, 11:04 a.m.