How can I add Greek character with subscript in the title of my figure?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Behrooz Daneshian
il 9 Feb 2023
Commentato: Behrooz Daneshian
il 10 Feb 2023
Hi all,
I am using the below code to plot the figures of interst. I want to have Greek character with subscript in the tile of figures. For example:
μw(w is subscript)=10%
σw(w is subscript)=5%
μγ(γ is superscript)=100 lb/ft^3(pound per qubic feet)
clear
close all
clc
load('POFDE.mat');
data = cell2mat(POFDE);
[lat,lon] = meshgrid(unique(data(:,1)),unique(data(:,2)));
for i = 1:(size(data, 2)-2)
figure
I = scatteredInterpolant(data(:,[1 2]), data(:,i+2));
contourf(lon,lat,min(1,max(0,I(lat,lon))),'ShowText','on')
colorbar
title(sprintf('The probability of frost depth exceedance of %d feet', i))
exportgraphics(gca, sprintf('FrostPlot_%d_feet.png', i))
end
0 Commenti
Risposta accettata
Sulaymon Eshkabilov
il 10 Feb 2023
Here is how you can add subscripts with Greek letters:
load('POFDE.mat');
data = cell2mat(POFDE);
[lat,lon] = meshgrid(unique(data(:,1)),unique(data(:,2)));
for i = 1:(size(data, 2)-2)
figure
I = scatteredInterpolant(data(:,[1 2]), data(:,i+2));
contourf(lon,lat,min(1,max(0,I(lat,lon))),'ShowText','on')
colorbar
title(['The probability of frost depth exceedance of \Omega_{\delta} = ' num2str(i) ' feet'])
exportgraphics(gca, sprintf('FrostPlot_%d_feet.png', i))
end
Più risposte (2)
Walter Roberson
il 10 Feb 2023
t = sprintf('\\mu_w = %.1g%%'), muw_percentage);
title(t, 'Interpreter', 'latex')
0 Commenti
Sulaymon Eshkabilov
il 10 Feb 2023
An alternative way is:
load('POFDE.mat');
data = cell2mat(POFDE);
[lat,lon] = meshgrid(unique(data(:,1)),unique(data(:,2)));
for i = 1:(size(data, 2)-2)
figure
I = scatteredInterpolant(data(:,[1 2]), data(:,i+2));
contourf(lon,lat,min(1,max(0,I(lat,lon))),'ShowText','on')
colorbar
title(['The probability of frost depth exceedance of $\Omega_{\delta}$ = ' num2str(i) ' feet'], 'Interpreter', 'Latex')
exportgraphics(gca, strcat(['FrostPlot_', num2str(i) '_feet.png']))
end
0 Commenti
Vedere anche
Categorie
Scopri di più su Labels and Annotations in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!









