i am unable to create a fuzzy in matlab R2012b using code
    2 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    Dhandapani.S
 el 21 de Mayo de 2017
  
    
    
    
    
    Respondida: Walter Roberson
      
      
 el 21 de Mayo de 2017
            i used the following code to create a fuzzy.
fis = newfis('per');
fis.input(1).name = 'service';
fis.input(1).range = [0 10];
fis.input(1).mf(1).name = 'poor';
fis.input(1).mf(1).type = 'gaussmf';
fis.input(1).mf(1).params = [1.5 0];
fis.input(1).mf(2).name = 'good';
fis.input(1).mf(2).type = 'gaussmf';
fis.input(1).mf(2).params = [1.5 5];
fis.input(1).mf(3).name = 'excellent';
fis.input(1).mf(3).type = 'gaussmf';
fis.input(1).mf(3).params = [1.5 10];
but i am unable to create. does this version support this type of creation?
0 comentarios
Respuesta aceptada
  Walter Roberson
      
      
 el 21 de Mayo de 2017
        That code works fine for me in R2012b.
Perhaps you do not have the Fuzzy Logic Toolbox installed, or do not have it licensed.
0 comentarios
Más respuestas (0)
Ver también
Categorías
				Más información sobre Fuzzy Logic in Simulink en Help Center y File Exchange.
			
	Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

