How to set path of user defined function in matlab2013b?
    5 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    Sabanam
 el 29 de Mzo. de 2014
  
    
    
    
    
    Respondida: Christopher Pedersen
      
 el 29 de Mzo. de 2014
            I have added one function file in image processing toolbox but when m running this function from .m file it shows error that....
Undefined function 'hsv2seg' for input arguments of type 'uint8'.
Error in size_using_fuzzy (line 4) BW=hsv2seg(I);
how can i add this function in matlab?
0 comentarios
Respuesta aceptada
  Christopher Pedersen
      
 el 29 de Mzo. de 2014
        addpath(fol)
where "fol" is the name of the folder where hsv2seg lives. Matlab will automatically search that folder for functions to use.
0 comentarios
Más respuestas (1)
  Azzi Abdelmalek
      
      
 el 29 de Mzo. de 2014
        
      Editada: Azzi Abdelmalek
      
      
 el 29 de Mzo. de 2014
  
      Put your file in a current folder
%or use addpath
addpath('your_folder')
0 comentarios
Ver también
Categorías
				Más información sobre Search Path 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!


