About 6,660,000 results
Open links in new tab
  1. Modify Figures in Live Scripts - MATLAB & Simulink

    In the Live Editor, you can interactively modify figures in the output. Use the provided tools to explore data and add formatting and annotations to your figures. Then, update your code to …

  2. Possible to save figures into variables instead of files in Matlab?

    Feb 2, 2018 · myfigure = gcf; %store current figure in a variable save('filename','myfigure'); However according to Matlab be warned: Warning: Figure is saved in filename.mat. Saving …

  3. MATLAB Scripts - Computer Action Team

    Scripts are collections of MATLAB commands stored in plain text files. When you type the name of the script file at the MATLAB prompt the commands in the script file are executed as if you …

  4. How to force an external figure in live scripts? - MATLAB

    Oct 13, 2016 · I've found that you can select the live script in the MATLAB Current Folder view and select F9 to run it as a script or right-click and select Run.

  5. How can I insert my MATLAB figure (.fig) files into ... - MathWorks

    Sep 8, 2010 · In order to copy MATLAB figure (.fig) files into multiple subplots use the following commands: h1 = openfig( 'test1.fig' , 'reuse' ); % open figure ax1 = gca; % get handle to axes …

  6. Importing Figure plot from another script for MATLAB GUI

    Dec 10, 2013 · When I go to file>new>GUI it creates a blank GUI in a separate script. I want to concatenate everything together so I can work on my G.U.I design within the same script or …

  7. figure - Create figure window - MATLAB - MathWorks

    figure creates a new figure window using default property values. The resulting figure is the current figure. figure(Name,Value) modifies properties of the figure using one or more name …

  8. How would I open multiple figures from one script. - MATLAB

    Mar 20, 2014 · Hey Giuseppe, Yes, you need to call figure() in between. You can just call it without parameters and it'll work, or you can check the function page and see what options …

  9. How to add captions to figures in a LiveScript that also include figure

    Jan 20, 2022 · "figureNumber" has been established at the beginning of the LiveScript. The overall objective here is to have figure numbers that will auto-update if I happen to remove a …

  10. plot - Plotting from different matlab files - Stack Overflow

    Mar 27, 2014 · Alternately, you can turn each of your different plotting files into functions that take in the figure number as an input. For instance: % In PlotCode1.m function PlotCode1(num) …

  11. Some results have been removed