Function failed to call the variable from workspace.
    3 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    John Wray
 el 24 de Mayo de 2016
  
    
    
    
    
    Comentada: Stephen23
      
      
 el 24 de Mayo de 2016
            Hi,
I tried to call a variable of workspace in my function, but it failed with " Undefined function or variable 'kinect_image'."
Why can't I call the existed variable in workspace in my own function?
0 comentarios
Respuesta aceptada
  Walter Roberson
      
      
 el 24 de Mayo de 2016
        The variable might not be in the same workspace. If you defined it at the command prompt then it would be in the "base" workspace rather than in the function's workspace. You can retrieve variables from the base workspace:
   evalin('base', 'kinect_image')
but almost always a better way is to pass the variable to the function.
1 comentario
  Stephen23
      
      
 el 24 de Mayo de 2016
				Indeed there are much better ways than using buggy evalin, and they are explained clearly in the documentation:
Más respuestas (0)
Ver también
Categorías
				Más información sobre Whos 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!