Display specific element of MATLAB table in bold?

18 vues (au cours des 30 derniers jours)
Ashish Sheikh
Ashish Sheikh le 23 Jan 2020
Hi ,
Is there a way in MATLAB to display specific element of MATLAB table in bold ?
For ex:
A=[1,2,3;4,5,6]
myTable = array2table(A);
% This is going to be my table output ... can i make 2 an 6 in bold ?
myTable =
2×3 table
A1 A2 A3
__ __ __
1 2 3
4 5 6

Réponses (2)

Gaurav Garg
Gaurav Garg le 27 Jan 2020
Hi,
You can create a cell array of paragraph and then convert the desired elements to bold. You can refer to the below code:
import mlreportgen.dom.*;
A=rand(3,3);
ca=cell(size(A,1),size(A,2))
for i = 1:size(A,1)
for j = 1:size(A,2)
ca{i,j}=Paragraph(num2str(A(i,j)));
end
end
ca{1,1}.Children(1).Bold = true; % Use this line to set a specified element as bold
% To view contents in a cell -
ca{1,1}.Children(1).Content
  1 commentaire
Walter Roberson
Walter Roberson le 27 Jan 2020
That looks to me to be specific to Report Generator ??
I think the user is asking about regular table() objects.

Connectez-vous pour commenter.


Walter Roberson
Walter Roberson le 27 Jan 2020
Not for table() objects, no.
For uitable() objects, then for traditional figures, there is a trick of using HTML1.1 wrappers around the text. Something like <HTML><STRONG>2</STRONG> . I do not recommend this approach, but it is possible.
For uifigures instead of traditional figures, I do not know.

Catégories

En savoir plus sur Develop uifigure-Based Apps dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by