Effacer les filtres
Effacer les filtres

error

1 vue (au cours des 30 derniers jours)
piyari sadia
piyari sadia le 20 Août 2011
i m doing work on optical character recognition.........an error come in my code.....................Error is For colon operator with char operand , first and last operend must be char............. for i=1:cellsize

Réponses (1)

Walter Roberson
Walter Roberson le 20 Août 2011
It sounds as if your variable named "cellsize" is of type char.
It is legal to have a statement such as
for i = 'J':'*'
and it is legal to have
for i = 54:112
but it is not legal to have a number on one side of the colon and a character on the other side of the colon.
I think it more likely than not that what you are trying to do is completely wrong, but in the meanwhile you can get around the immediate problem by using
for i = char(1):cellsize

Catégories

En savoir plus sur Data Type Conversion dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by