Azzera filtri
Azzera filtri

How to add a table on a figure ?

4 visualizzazioni (ultimi 30 giorni)
jacques baptiste
jacques baptiste il 25 Mag 2018
Risposto: Ameer Hamza il 25 Mag 2018
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

Risposte (1)

Ameer Hamza
Ameer Hamza il 25 Mag 2018
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'});

Categorie

Scopri di più su Migrate GUIDE Apps in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by