I need to use fuzzy logic over several iteration.The output of the first fuzzy iteration will determine the range of the input variable for the next fuzzy logic .

1 次查看(过去 30 天)
I need to use fuzzy logic over several iteration.The output of the first fuzzy iteration will determine the range of the input variable for the next fuzzy logic .Is there any MATLAB command through which I can dynamically control the range and shape of membership function while the program is running?

采纳的回答

Arkadiy Turevskiy
Arkadiy Turevskiy 2012-2-17
Maybe I do not understand your situation, but it seems you can just write some sort of for loop:
%% start
initialization code that constructs fuzzy system FIS and input signals U
Y=evalfis(U,FIS);
%% for loop
for index=1:n,
FIS.input.range = myfunction(y); % your calculations to update input range
Y=evalfis(U,FIS);
end

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Fuzzy Logic Toolbox 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by