Distinguish MATLAB Library & Custom Library
    6 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    Chaitanya Kulkarni
 el 20 de Sept. de 2018
  
    
    
    
    
    Respondida: TAB
      
 el 21 de Sept. de 2018
            How to identify if the library blocks used in the model are coming from MATLAB toolbox library or customized libraries. with 'ReferenceBlock' Command, but there is no common syntax for MATLAB Library.For e.g. fl_lib, Simulink.....
1. Is there any other attribute to differentiate this. 2. If not, anybody has complete list of libraries from all the toolboxes of MATLAB
1 comentario
  KALYAN ACHARJYA
      
      
 el 20 de Sept. de 2018
				A custom library you have to add, whereas Matlab inbuilt doesn't require that.
Respuesta aceptada
  TAB
      
 el 21 de Sept. de 2018
        libdata = libinfo(gcb);
libdir = which(libdata(1).Library, '-all');
If libdir have a matlab installation path, then it is Matlab toolbox library.
If libdir is your path where you have saved library (maybe outside matlab installation path) then it is custom library.
0 comentarios
Más respuestas (0)
Ver también
Categorías
				Más información sobre Introduction to Installation and Licensing 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!


