Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
Fix widths of images in Markdown to look ok.
  • Loading branch information
eszmw authored Nov 27, 2023
1 parent ba8a065 commit 1b3d273
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,25 +56,25 @@ MATLAB®, Mapping Toolbox™ (<samp>StoringData.mlx</samp>), Symbolic Math Toolb
## [**Strings.mlx**](https://matlab.mathworks.com/open/github/v1?repo=MathWorks-Teaching-Resources/Programming-Organizing-Data&project=OrganizingData.prj&file=Strings.mlx)
| | **In this script, students will...** | **Summary** |
| :-- | :-- | :-- |
| <img src="Images/StringCatwNeedle.png" width="171" height="35" alt="StringCatwNeedle.png"> |<br>- investigate the relationship between character arrays and Unicode values <br>- try building two-dimensional character arrays and string arrays <br>- format strings by concatenating, modifying capitalization, reordering characters, extracting or replacing substrings, or formatting textual data from numerical data. <br>- 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. |
| <img src="Images/StringCatwNeedle.png" width="850" alt="StringCatwNeedle.png"> |<br>- investigate the relationship between character arrays and Unicode values <br>- try building two-dimensional character arrays and string arrays <br>- format strings by concatenating, modifying capitalization, reordering characters, extracting or replacing substrings, or formatting textual data from numerical data. <br>- 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. |

<a name="H_2ED0A85B"></a>
## [**NumericDataTypes.mlx**](https://matlab.mathworks.com/open/github/v1?repo=MathWorks-Teaching-Resources/Programming-Organizing-Data&project=OrganizingData.prj&file=NumericDataTypes.mlx)
| | **In this script, students will...** | **Summary** |
| :-- | :-- | :-- |
| <img src="Images/CompThoughtOneTenth.png" width="171" height="115" alt="CompThoughtOneTenth.png"> |<br>- create an example illustrating the differences between floating point arithmetic and symbolic arithmetic. <br>- explore the results of mathematical operations involving mixed numeric data types. <br>- identify the possible values of a 32-bit unsigned integer. <br>- 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. |
| <img src="Images/CompThoughtOneTenth.png" width="450" alt="CompThoughtOneTenth.png"> |<br>- create an example illustrating the differences between floating point arithmetic and symbolic arithmetic. <br>- explore the results of mathematical operations involving mixed numeric data types. <br>- identify the possible values of a 32-bit unsigned integer. <br>- 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. |

<a name="H_CD16DB7B"></a>
## [**Memory.mlx**](https://matlab.mathworks.com/open/github/v1?repo=MathWorks-Teaching-Resources/Programming-Organizing-Data&project=OrganizingData.prj&file=Memory.mlx)
| | **In this script, students will...** | **Summary** |
| :-- | :-- | :-- |
| <img src="Images/memory.png" width="171" height="128" alt="memory.png"> |<br>- compare the results of computation organized in memory-efficient and memory-inefficient ways. <br>- 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. |
| <img src="Images/memory.png" width="750" alt="memory.png"> |<br>- compare the results of computation organized in memory-efficient and memory-inefficient ways. <br>- 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. |

<a name="H_666DEC5B"></a>
## [**StoringData.mlx**](https://matlab.mathworks.com/open/github/v1?repo=MathWorks-Teaching-Resources/Programming-Organizing-Data&project=OrganizingData.prj&file=StoringData.mlx)
| | **In this script, students will...** | **Summary** |
| :-- | :-- | :-- |
| <img src="Images/sst.png" width="171" height="128" alt="sst.png"> |<br>- read metadata to understand a dataset. <br>- use arrays to store multidimensional data of the same type and access individual elements or sub-arrays using dimensional, logical or linear indexing. <br>- 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. <br>- 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. <br>- recognize cell arrays and extract the data to other data structures. <br>- clean data by interpolating missing values. <br>- answer questions by analyzing data. <br>- 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. |
| <img src="Images/sst.png" width="750" alt="sst.png"> |<br>- read metadata to understand a dataset. <br>- use arrays to store multidimensional data of the same type and access individual elements or sub-arrays using dimensional, logical or linear indexing. <br>- 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. <br>- 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. <br>- recognize cell arrays and extract the data to other data structures. <br>- clean data by interpolating missing values. <br>- answer questions by analyzing data. <br>- 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. |

<a name="H_F61733D7"></a>
# License
Expand Down

0 comments on commit 1b3d273

Please sign in to comment.