Filter löschen
Filter löschen

print acsii characters in tabular format using char

3 Ansichten (letzte 30 Tage)
jarvan
jarvan am 11 Nov. 2014
Bearbeitet: pietro am 11 Nov. 2014
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?

Akzeptierte Antwort

pietro
pietro am 11 Nov. 2014
Bearbeitet: pietro am 11 Nov. 2014
try this:
function mychar(y)
if y > 129
disp('Please enter less than 129.')
else
x = char(uint8(y))
table1 = uitable
set(table1,'Data',{x})
end

Weitere Antworten (0)

Kategorien

Mehr zu Workspace Variables and MAT-Files finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by