<< editanfis ANFISLab Module initanfis >>

ANFISLab Module >> ANFISLab Module > fls2abcpqr

fls2abcpqr

fls2abcpqr Extract the membership functions from a ANFIS model for training purposes.

Calling Sequence

[abc,pqr]=fls2abcpqr(fls)

Parameters

fls :

ANFIS model (in format compatible with sciFLT)

abc :

Input membership function parameters

pqr :

Output membership function parameters

Description

This function is only for expert/developer, who need to call the anfislab library directly.

Examples

x = (0:0.1:10)';
y = sin(2*x)./exp(x/5);
fls = initanfis([x y],5,'gbellmf');
[abc,pqr]=fls2abcpqr(fls);

See also

Authors


Report an issue
<< editanfis ANFISLab Module initanfis >>