How can I make a subscript for a column name

24 visualizaciones (últimos 30 días)
Tobias Wzl
Tobias Wzl el 12 de Oct. de 2017
Comentada: Tobias Wzl el 12 de Oct. de 2017
Hey everyone,
I'm looking for help, like I already mentioned in the title. I can't figure out how I can do a subscript for a Column name in my table. Does anyone know how to do this? I was looking desperatly for answers all over the internet, but I couldn't find anything. I just want that the'i' after my P is subscripted....
Code:
% --- FIGURE -------------------------------------
handles.figure1 = figure( ...
'Tag', 'figure1', ...
'Units', 'characters', ...
'Position', [102.8 24.2307692307692 126.8 33], ...
'Name', 'Parameter', ...
'MenuBar', 'none', ...
'NumberTitle', 'off', ...
'Color', [0.941 0.941 0.941]);
% --- UITABLE -------------------------------------
% Initialize empty string for components of the Data
Data=cell(16,6);
for i = 1:numel(Data)
Data{i} = '';
end
handles.uitable1 = uitable( ...
'Parent', handles.figure1, ...
'Tag', 'uitable1', ...
'UserData', zeros(1,0), ...
'Units', 'characters', ...
'Position', [12.2 8 114.3 21], ...
'BackgroundColor', [1 1 1;0.961 0.961 0.961], ...
'ColumnEditable', [true,true,true,true,true], ...
'ColumnFormat', {'char','char','char','char','char'}, ...
'ColumnName',{'ID','P_i Stationary[W]','P_i','<HTML>&Omega','Voltage[V]'}, ... % für griechische Buchstaben in einer Column <HTML>&Buchstabe
'ColumnWidth', {'auto','auto','auto','auto','auto'}, ...
'Data',Data); % add the "string" Data
uicontrol('Style', 'push', 'String', 'SAVE',...
'Position', [12.2 8 114.3 21])

Respuesta aceptada

Walter Roberson
Walter Roberson el 12 de Oct. de 2017
Example:
h = uitable('Data', [1 2; 3 4], 'ColumnName', {'<HTML>&Omega', '<HTML>P<SUB>i'})
  3 comentarios
Walter Roberson
Walter Roberson el 12 de Oct. de 2017
'<HTML>P<SUB>i</SUB> transients'
Tobias Wzl
Tobias Wzl el 12 de Oct. de 2017
solved it by myself
'<html>P<sub>i</sub> -stationary[W]'

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Dialog Boxes en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by