What does X = [X Y] mean ?
조회 수: 25 (최근 30일)
이전 댓글 표시
I have the code approximately like this :
Word =[];
for m = 1 : N
Letter = read_letter(img, num_letters) %read_letter is the file function to correlate my .mat with character image(img) and then determining that img as a letter eg.('a','b' or 'c' ect.)
Word = [Word Letter];
end
So the question is. Are the values inside of Word variable are letters ? Additional:Does Word variable works like Unary Operation ?
Because i can't access this array to take its values with simple for loop like :
chars = ''; % i dont know whether this is necessary or nah
for m = 1 : length(Word)
if Word(m) == 'a' || Word(m) == 'b'
chars = 'character is a or b !';
end
end
disp(chars);
댓글 수: 1
채택된 답변
Image Analyst
2018년 10월 30일
I don't know exactly what read_letter does, but if it returns a character, then Word is a character array - basically a vector (1-D array) of letters.
If you need more help, attach
- your .mat file,
- your image file, and
- your code for the read_letter() function
댓글 수: 2
Image Analyst
2018년 11월 5일
OK. Not sure why you didn't get an email. It automatically does that. You might want to check your junk mail folder or check the email you have registered here to make sure it's right.
Thanks for doing #3 (attaching code). I'll get notified when you've done #1 and #2.
추가 답변 (1개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Data Type Conversion에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!