
sprintf - Format data into string or character vector - MATLAB
This MATLAB function formats the data in arrays A1,...,An using the formatting operators specified by formatSpec and returns the resulting text in str.
fprintf - Write data to text file - MATLAB - MathWorks
This MATLAB function applies the formatSpec to all elements of arrays A1,...An in column order, and writes the data to a text file.
Formatting Text - MATLAB & Simulink - MathWorks
Compose character arrays or string arrays that include ordinary text and data formatted to your specification.
compose - Format data into multiple strings - MATLAB
This MATLAB function formats data values from the input array, A, using formatting operators specified by formatSpec and returns the resulting text in str.
textscan - Read formatted data from text file or string - MATLAB
This MATLAB function reads data from an open text file into a cell array, C.
sscanf - Read formatted data from strings - MATLAB - MathWorks
This MATLAB function reads data from str, converts it according to the format specified by formatSpec, and returns the results in an array.
num2str - Convert numbers to character array - MATLAB
This MATLAB function converts a numeric array into a character array that represents the numbers.
fscanf - Read data from text file - MATLAB - MathWorks
This MATLAB function reads data from an open text file into column vector A and interprets values in the file according to the format specified by formatSpec.
fprintf - Displays variable text centered on masked subsystem icon
This MATLAB function displays formatted text centered on the icon.
How to validate a formatSpec string in MATLAB? - Stack Overflow
Jul 3, 2016 · 6 Many of the functions in MATLAB (and also other language that have a c-derived scanf / printf) used for writing or reading strings (to name a few: sscanf, sprintf, textscan) rely on the user …