Borrar filtros
Borrar filtros

can someone give me an example of what a "vector composed of characters" looks like exactly?

4 visualizaciones (últimos 30 días)
title. just need an thorough example

Respuestas (1)

Steven Lord
Steven Lord el 4 de Dic. de 2022
A = 'orange'
A = 'orange'
A is a vector of type char. It has 1 row and 6 columns.
If you're working with multiple pieces of text data and you're using a release where this data type is present, prefer using a string array instead of a cell array with char vectors or a char matrix.
B = ["orange"; "apple"; "watermelon"]
B = 3×1 string array
"orange" "apple" "watermelon"
If you tried to store these three fruits in a char matrix, the first two names would be padded with spaces so they're as long as the longest name. String arrays don't require this padding.
C = char(B)
C = 3×10 char array
'orange ' 'apple ' 'watermelon'

Categorías

Más información sobre Data Type Conversion en Help Center y File Exchange.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by