About 753,000 results
Open links in new tab
  1. table - Table array with named variables that can contain different ...

    Alternatively, use the table function described below to create a table from input data arrays. You also can create a table that allows space for variables whose values are filled in later. To create a table …

  2. Tables - MATLAB & Simulink - MathWorks

    Create Tables and Assign Data to Them There are several ways to create tables and assign data to them. You can create tables from input arrays, preallocate tables and fill them in later, or import …

  3. Access Data in Tables - MATLAB & Simulink - MathWorks

    Access Data in Tables A table is a container that stores column-oriented data in variables. To access the data in a table, you can index into the table by specifying rows and variables, just as you can …

  4. readtable - Create table from file - MATLAB - MathWorks

    This MATLAB function creates a table by reading column-oriented data from a text file, spreadsheet (including Microsoft Excel) file, XML file, HTML file, or a Microsoft Word document.

  5. create a table with strings and numbers - MATLAB Answers - MATLAB …

    May 24, 2021 · It is my understanding that you want to create a table which consists of string and double in columns. You can use table function which can accept array with named variables that can contain …

  6. What are Tables and How are They Used in MATLAB - MATLAB

    Nov 3, 2020 · In this video, we covered how to define a table and the types of data tables contain, how to perform an analysis of the data, and how to perform basic functions. Take advantage of MATLAB …

  7. Plots That Support Tables - MATLAB & Simulink - MathWorks

    Plots That Support Tables Many plotting functions can plot data directly from a table. You pass the table as the first argument to the function followed by the variables you want to plot. You can specify either …

  8. uitable - Create table user interface component - MATLAB

    This MATLAB function creates a table UI component in the current figure and returns the Table UI component object.

  9. how to convert table to matrix? - MATLAB Answers - MathWorks

    Feb 5, 2018 · To convert a table to a matrix, use the “table2array” function. (A matrix is a 2-D array.) As an alternative, you can convert a table to an array by using the syntax “T{:,:}”, where “T” is the table. …

  10. An array / matrix of tables - MATLAB Answers - MATLAB Central

    Nov 20, 2020 · Hi! I want to load an unknown amount of tables, and store them in an array, list, or even a matrix. I tried implomenting it using a simple array, and even a cell array (in which each cell …