La traducción de esta página está obsoleta. Haga clic aquí para ver la última versión en inglés.
Conversión de tipos de datos
MATLAB® tiene muchas funciones para convertir valores de un tipo de datos a otro para su uso en diferentes contextos. Por ejemplo, puede convertir números en texto y, a continuación, añadirlos a etiquetas de gráficas o nombres de archivos. Puede representar números como sus valores binarios o hexadecimales. MATLAB proporciona funciones para las conversiones entre arreglos numéricos, cadenas y arreglos de caracteres y arreglos categorical
, datetime
y duration
. También puede convertir entre los tipos de datos que agrupan datos en contenedores, como los arreglos de celdas, estructuras, tablas y horarios. En esos casos, los valores de datos permanecen igual, pero se almacenan y se accede a ellos en un tipo diferente de contenedor.
Funciones
Temas
- Convert Text to Numeric Values
Convert text to arrays of numeric values. Text can represent floating-point values, dates and times, and hexadecimal and binary numbers. If text represents dates and times, then you can convert the text to datetime or duration values.
- Convert Numeric Values to Text
Convert numeric values to text. Text can represent floating-point values, either with or without exponential notation, or hexadecimal or binary digits. Use these conversions to add numbers to text such as plot labels or titles.
- Unicode and ASCII Values
MATLAB stores all characters as Unicode characters. Both strings and character vectors use the same encoding. You can convert characters to their Unicode code values, and numbers to characters.
- Hexadecimal and Binary Values
Specify hexadecimal and binary values either as literals or as text. Hexadecimal and binary literals are stored as integers. You can convert text representing hexadecimal and binary values to numbers, and numbers to text representations.
- Convert Between Text and datetime or duration Values
The
datetime
andduration
data types are the recommended data types for working with dates and times. You can convert these data types to text by using thestring
function, and you can convert text to these data types by using thedatetime
andduration
functions. When you read text representing dates and times from spreadsheets and text files you can automatically convert the text todatetime
orduration
arrays. - Convert Text in Table Variables to Categorical
This example shows how to convert a variable in a table from a cell array of character vectors to a categorical array.
- Valid Combinations of Unlike Classes
If you include elements of unlike classes in a matrix, MATLAB converts some elements so that all elements of the resulting matrix are of the same type. Data type conversion is done with respect to a preset precedence of classes.