fuzzy_mults: Multiply two triangular fuzzy numbers

View source: R/fuzzy_operations.R

fuzzy_multsR Documentation

Multiply two triangular fuzzy numbers

Description

Computes the scalar product of two triangular fuzzy numbers.

Usage

fuzzy_mults(X, Y)

Arguments

X

List. First triangular fuzzy number with components l, x, and r.

Y

List. Second triangular fuzzy number with components l, x, and r.

Value

A scalar representing the sum of the product of the corresponding components.

Examples

X <- list(l = 1, x = 2, r = 3)
Y <- list(l = 2, x = 3, r = 4)
fuzzy_mults(X, Y)

flex documentation built on Sept. 2, 2025, 9:09 a.m.

Related to fuzzy_mults in flex...