why 97 and 65?
Afficher commentaires plus anciens
for i=1:B
if((word(i)==97) | (word(i)==65))
if(i==1)
NewImg = img1;
end
if(i>1)
Temping = cat(2,NewImg,img1);
NewImg = Temping;
end
end
%%%
%%%
end
why 97 and 65?
What dose is mean Temping?
4 commentaires
KALYAN ACHARJYA
le 29 Nov 2018
Modifié(e) : KALYAN ACHARJYA
le 29 Nov 2018
How do we know that without detail of the code?
David Goodmanson
le 29 Nov 2018
Modifié(e) : David Goodmanson
le 30 Nov 2018
(see posted answer)
Image Analyst
le 29 Nov 2018
That's what I was going to answer. I'd post that as an official answer below, David, instead of a comment up here.
David Goodmanson
le 30 Nov 2018
ok I'll give it a try, thanks.
Réponses (1)
David Goodmanson
le 30 Nov 2018
Hi Mintra,
this is quite likely related to the ascii character set
char(97)
ans = 'a'
char(65)
ans = 'A'
small letters are 97 -122, capital letters are 65 - 90.
As for the Temping image, no way to say what it is without knowing the context.
Catégories
En savoir plus sur Vehicle Dynamics Blockset dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!