Displaying binary data in a uitable
1 回表示 (過去 30 日間)
古いコメントを表示
How do I show the binary values in a uitable. This was my attempt:
IM=getimage(handles.axes4); %Image data in 16 bit format
data=dec2bin(IM); %get binary representation
%Add all data to uitable
set(handles.uitableResults,'data',[])
columnname={'Binary'};
set(handles.uitableResults,'columnname',columnname);
set(handles.uitableResults,'data',{(data})
2 件のコメント
Jan
2017 年 2 月 27 日
And what happens if you run this code? There is a typo in the last line: the orphaned ( bfore "data" is misplaced.
採用された回答
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Whos についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!