MATLAB: Display Summation sign showing both upper and lower limit

sigma symbolsummation notation

Hello,
Does anybody help me in displaying Summation notation (∑, sigma symbol) having both upper and lower limit ?
Thanks a billion !
Bijit

Best Answer

figure1 = figure;
axes1 = axes('Parent',figure1,...
'Position',[0.13 0.262 0.762 0.663]);
text('Parent',axes1,'Interpreter','latex',...
'String','$$\sum_{i=1}^{2n} |k_i-k_j|$$',...
'Position',[0.377 -0.270 9.160],...
'Fon tSize',16);
Related Question