open figure stored in workspace
    43 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    Rubén Pérez Sanz
 el 23 de Jul. de 2020
  
    
    
    
    
    Comentada: Strider
 el 12 de Nov. de 2022
            Hi there,
I am trying to open a figure that I have previously stored in the MATLAB Workspace. The figure has been stored in this way:
f1 = figure; figure(f1); plot(gr_RULE(10:end,1));  title('Rule for k');
 
 However, when I try to open it the following error comes up:
    >> openfig(f1)
    Error using openFigure
    The value of 'Filename' is invalid. It must satisfy the function: ischar.
    Error in openfig>localGetFileAndOptions (line 104)
    ip.parse(args{:});
    Error in openfig (line 37)
    [filename, reuse, visibleAction] = localGetFileAndOptions(varargin);
I would appreciate if sb could let me know how to open them directly from the workspace and not from the directory file.
KR
2 comentarios
Respuesta aceptada
  Jalaj Gambhir
    
 el 27 de Jul. de 2020
        Hi, 
This is because when you close the figure, the object handle is deleted. Read documentation link for more details. You can check this by executing isgraphics(f1) in the command window, which determines the validity of a graphic object handle. 
Hope this helps!
Más respuestas (0)
Ver también
Categorías
				Más información sobre Creating, Deleting, and Querying Graphics Objects 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!



