why 97 and 65?
이전 댓글 표시
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
KALYAN ACHARJYA
2018년 11월 29일
편집: KALYAN ACHARJYA
2018년 11월 29일
How do we know that without detail of the code?
David Goodmanson
2018년 11월 29일
편집: David Goodmanson
2018년 11월 30일
(see posted answer)
Image Analyst
2018년 11월 29일
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
2018년 11월 30일
ok I'll give it a try, thanks.
답변 (1개)
David Goodmanson
2018년 11월 30일
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.
카테고리
도움말 센터 및 File Exchange에서 Vehicle Dynamics Blockset에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!