Navigation

Operators and Keywords

Function List:

C++ API

Function File: res = fl_intersect(A, B)

Function File: res = fl_intersect(A, B, T)

Returns the Fuzzy Logic intersection. A and B must be both row vectors or both column vectors.

The argument T allows to specify a custom T-Norm function. So it can be:

  • 'min': use the minimum T-Norm (same as fl_intersect(A,B));
  • 'prod': use the product T-Norm;
  • function_handle: a user-defined function as T-Norm.

Note that only minimum and product T-Norm will be calculated rapidly and in multithread mode. Using a user-defined function as T-Norm will result in a long time calculation.