why do i get this error in line 15? "Subscript indices must either be real positive integers or logicals."
    3 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
Respuesta aceptada
  Jan
      
      
 el 16 de Mayo de 2018
        
      Editada: Jan
      
      
 el 16 de Mayo de 2018
  
      Your x(1) is 1.96. Then in the first iteration, where e=1, fj{x(e)} tries to use 1.96 as index of the cell array fj. But as the error message tells you, indices must be positive integers.
I guess you want:
fj(e) = ...
Read doc cell concerning the curly braces and cell arrays.
Are you sure that e and i should be symbolic variables?
Más respuestas (0)
Ver también
Categorías
				Más información sobre Logical en Help Center y File Exchange.
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
