0

Can Anfis (Adaptive Neuro-Fuzzy Inference Systems) in Matlab can have more than one output?

By the way , is it a good idea to use Anfis to decide to ON/OFF fan and lights ?

acording to the example in matlab website , I can see there is one output only. But it didn't mention it. Anyone know anything about it?

Amro
  • 123,847
  • 25
  • 243
  • 454
wizztjh
  • 6,979
  • 6
  • 58
  • 92

3 Answers3

2

I don't know anything about it, but couldn't you just have a unique network for each output?

Arguably, each output could be determined independently of the others, couldn't it?

TaslemGuy
  • 594
  • 5
  • 13
1

as mentioned here (http://www.researchgate.net/post/How_to_generate_multiple_output_for_ANFIS2) anfis just supports one output which is the last column of train data

Ehsan Jeihani
  • 1,238
  • 2
  • 14
  • 23
0

Did you try like this. anfis_input = *[input1 input2 [output1 output2]?*

Binja
  • 121
  • 3
  • 3
  • 12