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
KALYAN ACHARJYA 2018년 11월 29일
편집: KALYAN ACHARJYA 2018년 11월 29일
How do we know that without detail of the code?
David Goodmanson
David Goodmanson 2018년 11월 29일
편집: David Goodmanson 2018년 11월 30일
(see posted answer)
Image Analyst
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
David Goodmanson 2018년 11월 30일
ok I'll give it a try, thanks.

댓글을 달려면 로그인하십시오.

답변 (1개)

David Goodmanson
David Goodmanson 2018년 11월 30일

1 개 추천

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에 대해 자세히 알아보기

태그

아직 태그를 입력하지 않았습니다.

질문:

2018년 11월 29일

편집:

2018년 11월 30일

Community Treasure Hunt

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

Start Hunting!

Translated by