How to use a for loop to create a table to display special characters.

I need to get the rest of the numbers and characters in between?
for t = 1
between = (180:1:200);
char = char(between);
fprintf('%d %c\n',between , char);
end
output =
180 µ
182 ·
184 ¹
186 »
188 ½
190 ¿
192 Á
194 Ã
196 Å
198 Ç
200 ´
181
183 ¸
185 º
187 ¼
189 ¾
191 À
193 Â
195 Ä
197 Æ

댓글 수: 1

Rather than putting meta-data into variable names (ie..'a', 'b', ...) much simpler and more efficient code would simply store the data and meta-data in two vectors:
table = [180,181,182,183,184,185,186,187,189,190,191,192,193,194,195,196,197,198,199,200];
chars = 'abcdefghijklmnopqrst';
fprintf('%d = %c\n', [table; chars]);

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

 채택된 답변

Are you looking for something like this
between = (180:1:200);
chars = char(between);
fprintf('%d %c\n', [between; chars]);
Result
180 ´
181 µ
182
183 ·
184 ¸
185 ¹
186 º
187 »
188 ¼
189 ½
190 ¾
191 ¿
192 À
193 Á
194 Â
195 Ã
196 Ä
197 Å
198 Æ
199 Ç
200 È

댓글 수: 3

yes but when i pu the same code in it shoes up as 180 m, 182 . basically it goes by 2
No, your code is different. Have you tried running my code?
yes, i know why it didnt work i didn't add the s. Thank you!

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

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

태그

질문:

2020년 11월 7일

댓글:

2020년 11월 8일

Community Treasure Hunt

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

Start Hunting!

Translated by