GitHub - MathWorks-Teaching-Resources/Programming-Organizing-Data: These live scripts focus on concepts and practices related to working with data: textual data types, numerical data types, data storage, and memory. · GitHub
You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Learn the concepts of textual and numeric data types, memory, and data structures including arrays, tables, and structs.
or
Curriculum Module
Created with R2024a. Compatible with R2024a and later releases.
Information
This curriculum module contains interactive MATLAB® live scripts that teach fundamental concepts and basic terminology related to programming computers. This module focuses on concepts and practices related to working with data.
Background
You can use these live scripts as demonstrations in lectures, class activities, or interactive assignments outside class. This module covers textual data, numerical data, memory, and data structures including, arrays, structs, tables, and more. Applications include sea surface temperature data and solar power generation data.
The instructions inside the live scripts will guide you through the exercises and activities. Get started with each live script by running it one section at a time. To stop running the script or a section midway (for example, when an animation is in progress), use the Stop button in the RUN section of the Live Editor tab in the MATLAB Toolstrip.
These scripts assume familiarity with MATLAB and general programming knowledge at the level covered in the Fundamentals of Programming interactive examples. You could also use MATLAB Onramp as another resource to acquire familiarity with MATLAB.
Getting Started
Accessing the Module
On MATLAB Online:
Use the link to download the module. You will be prompted to log in or create a MathWorks account. The project will be loaded, and you will see an app with several navigation options to get you started.
On Desktop:
Download or clone this repository. Open MATLAB, navigate to the folder containing these scripts and double-click on OrganizingData.prj. It will add the appropriate files to your MATLAB path and open an app that asks you where you would like to start.
Ensure you have all the required products (listed below) installed. If you need to include a product, add it using the Add-On Explorer. To install an add-on, go to the Home tab and select Add-Ons > Get Add-Ons.
Products
MATLAB®, Mapping Toolbox™ (StoringData.mlx), Symbolic Math Toolbox™ (Strings.mlx)
$\bullet$ investigate the relationship between character arrays and Unicode values $\bullet$ try building two-dimensional character arrays and string arrays $\bullet$ format strings by concatenating, modifying capitalization, reordering characters, extracting or replacing substrings, or formatting textual data from numerical data. $\bullet$ extract the month from a regularly-formatted but randomly generated sentence
You can define, edit, format, and string together textual data for a computer. This script investigates strings, character arrays, and numeric data types and discusses how they interact in MATLAB. Formatting strings, modifying and extracting substrings, and building composite strings that include the results of numerical calculations are all explored.
$\bullet$ create an example illustrating the differences between floating point arithmetic and symbolic arithmetic. $\bullet$ explore the results of mathematical operations involving mixed numeric data types. $\bullet$ identify the possible values of a 32-bit unsigned integer. $\bullet$ use documentation to discover how to perform mathematical computations in MATLAB.
Different numeric data types are optimized for different operations. This script investigates the binary number system and how it leads to floating point, integer, and boolean data types.
$\bullet$ compare the results of computation organized in memory-efficient and memory-inefficient ways. $\bullet$ apply understanding of memory to recognize efficient computational patterns such as pre-allocation.
Understanding a little bit about how programs interact with memory can help you to write efficient programs or to understand why an algorithm might be much faster in some implementations than others. This script investigates high-level memory management and demonstrates how to write more memory-efficient code.
$\bullet$ read metadata to understand a dataset. $\bullet$ use arrays to store multidimensional data of the same type and access individual elements or sub-arrays using dimensional, logical or linear indexing. $\bullet$ use tables to store linked sets of different types of data such as key/value sets and extract information as tables, single variable arrays, or concatenated variable arrays. $\bullet$ use structure arrays to store linked data of different types and sizes and use dot notation to access fields within a structure array or variables within a table. $\bullet$ recognize cell arrays and extract the data to other data structures. $\bullet$ clean data by interpolating missing values. $\bullet$ answer questions by analyzing data. $\bullet$ convert data between types and structures.
Different data storage structures are optimized for different types of data and access. This script facilitates the exploration of arrays, tables, structure arrays, and cell arrays as structures for storing data. Examples include sea surface temperature data and solar power generation data.
License
The license for this module is available in the LICENSE.md.
Looking for more? Find an issue? Have a suggestion? Please contact the MathWorks Educator Content Development Team. If you want to contribute directly to this project, you can find information about how to do so in the CONTRIBUTING.md page on GitHub.