print acsii characters in tabular format using char
    4 次查看(过去 30 天)
  
       显示 更早的评论
    
I am writing a function that will receive a matrix of integers uint8 less than 129 as input agrument. And print it as acsii characters in tabular format using char
 function mychar(y)
if y > 129
    disp('Please enter less than 129.')
else
    x = char(uint8(y))
    table1 = uitable
    set(table1,'Data',x)
end
However, it said data must be a numeric, logic. Is that any codes I missed on above?
0 个评论
采纳的回答
更多回答(0 个)
另请参阅
类别
				在 Help Center 和 File Exchange 中查找有关 Develop Apps Using App Designer 的更多信息
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

