About 70 results
Open links in new tab
  1. load - Load variables from file into workspace - MATLAB

    This MATLAB function loads data from filename into the MATLAB workspace.

  2. importdata - Load data from file - MATLAB - MathWorks

    Data from the file, returned as a matrix, multidimensional array, or scalar structure array, depending on the characteristics of the file. Based on the file format of the input file, importdata calls a helper …

  3. Import Tool - Import data from file - MATLAB - MathWorks

    The Import Tool lets you interactively select and import MAT, text, spreadsheet, media (image, audio, and video), and scientific data (HDF5 and netCDF) files. You can also generate MATLAB ® code to …

  4. Save and Load Workspace Variables - MATLAB & Simulink

    To load a subset of variables from a MAT file, on the Home tab, in the Variable section, click Import Data. Select the MAT file you want to load and click Open. Then, use the Import Tool dialog box to …

  5. Load Signal Data for Simulation - MATLAB & Simulink - MathWorks

    Capture dynamics in external input data for a continuous signal by specifying additional time steps for a variable-step solver. Load Data to Represent Nonvirtual Bus Input from Model Hierarchy Use logged …

  6. importdata - Load data from file - MATLAB - MathWorks

    Data from the file, returned as a matrix, multidimensional array, or scalar structure array, depending on the characteristics of the file. Based on the file format of the input file, importdata calls a helper …

  7. How to load and import a .mat file? - MATLAB Answers - MathWorks

    Nov 29, 2021 · LOAD Load data from MAT-file into workspace. S = LOAD (FILENAME) loads the variables from a MAT-file into a structure array, or data from an ASCII file into a double-precision array.

  8. Data Import and Analysis - MATLAB & Simulink - MathWorks

    Access data from text files, spreadsheets, hardware, other software, or the web. Explore the data to identify trends, test hypotheses, and estimate uncertainty. Create customized algorithms, …

  9. Load Data Using the From Workspace Block - MATLAB & Simulink

    This example shows how to create and format data to load from the base workspace using the From Workspace block. To load data using the From Workspace block, you must create or save the data …

  10. Load .mat from file and assign new name - MATLAB Answers

    Jun 24, 2016 · This is commonly referred to as "poofing" variables into the workspace and can cause unexpected issues. Inside a function I recommend ALWAYS calling load with an output argument. If …