필터 지우기
필터 지우기

How to add a table on a figure ?

조회 수: 4 (최근 30일)
jacques baptiste
jacques baptiste 2018년 5월 25일
답변: Ameer Hamza 2018년 5월 25일
Hello,
I've a table saved like this:
u = uitable(g,'Data',dgain,'RowName',rn,'Position',[60,343,300,90],...
'ColumnName',cn,'ColumnFormat',{'bank','bank'});
How can i plot the table (graphically, not the values into a curve) into a figure ? The table format is really easy to read and is a good recap.
Best regards,
Baptiste

답변 (1개)

Ameer Hamza
Ameer Hamza 2018년 5월 25일
What is the class of dgain? If it is MATLAB table then try this
g = gcf;
u = uitable(g,'Data',table2cell(dgain),'RowName',rn,'Position',[60,343,300,90],...
'ColumnName',cn,'ColumnFormat',{'bank','bank'});

카테고리

Help CenterFile Exchange에서 Migrate GUIDE Apps에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by