Is it possible to place format specifier in figure window tittle of uitable?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Kim Lopez
el 27 de Oct. de 2017
Respondida: Walter Roberson
el 27 de Oct. de 2017
I want to add a title on my uitable with this code. But it did not work.
for n = 1:total
f(i) = figure('Position',[00+(i*150) 200 510 300],'Name','Unit %d', n);
t(n) = uitable(f(n));
t(n).ColumnName = {'State','X MW','P(X)','(X-C) MW','P(X-C)','P(X)'};
t(n).Data = Data;
t(n).Position(3) = t(n).Extent(3);
t(n).Position(4) = t(n).Extent(4);
end
0 comentarios
Respuesta aceptada
Walter Roberson
el 27 de Oct. de 2017
f(i) = figure('Position',[00+(i*150) 200 510 300],'Name', sprintf('Unit %d', n));
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Whos 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!