Display specific element of MATLAB table in bold?
25 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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
0 comentarios
Respuestas (2)
Gaurav Garg
el 27 de En. de 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 comentario
Walter Roberson
el 27 de En. de 2020
That looks to me to be specific to Report Generator ??
I think the user is asking about regular table() objects.
Walter Roberson
el 27 de En. de 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.
0 comentarios
Ver también
Categorías
Más información sobre Tables en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!