Effacer les filtres
Effacer les filtres

how to read a letter from a string in a cell?

2 vues (au cours des 30 derniers jours)
mak khatib
mak khatib le 8 Mai 2017
Réponse apportée : dpb le 8 Mai 2017
how to read a letter from a string in a cell?

Réponses (1)

dpb
dpb le 8 Mai 2017
Just as in any other cell addressing; use the indexed addressing mode--
>> whos s % just happened to be in workspace at the moment...
Name Size Bytes Class Attributes
s 222x1 16706 cell
>> s(1) % the first cell
ans =
'-40.01'
>> s{1} % the first cell content
ans =
-40.01
>> s{1}(4) % the fourth character in the cell content..
ans =
.
>>

Community Treasure Hunt

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

Start Hunting!

Translated by