フィルターのクリア

How can I add Greek character with subscript in the title of my figure?

3 ビュー (過去 30 日間)
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

採用された回答

Sulaymon Eshkabilov
Sulaymon Eshkabilov 2023 年 2 月 10 日
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
Warning: Duplicate data points have been detected and removed - corresponding values have been averaged.
Warning: Duplicate data points have been detected and removed - corresponding values have been averaged.
Warning: Duplicate data points have been detected and removed - corresponding values have been averaged.
Warning: Duplicate data points have been detected and removed - corresponding values have been averaged.
Warning: Duplicate data points have been detected and removed - corresponding values have been averaged.
  1 件のコメント
Behrooz Daneshian
Behrooz Daneshian 2023 年 2 月 10 日
Thank you so much for your answer, that worked for me.

サインインしてコメントする。

その他の回答 (2 件)

Walter Roberson
Walter Roberson 2023 年 2 月 10 日
t = sprintf('\\mu_w = %.1g%%'), muw_percentage);
title(t, 'Interpreter', 'latex')

Sulaymon Eshkabilov
Sulaymon Eshkabilov 2023 年 2 月 10 日
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
Warning: Duplicate data points have been detected and removed - corresponding values have been averaged.
Warning: Duplicate data points have been detected and removed - corresponding values have been averaged.
Warning: Duplicate data points have been detected and removed - corresponding values have been averaged.
Warning: Duplicate data points have been detected and removed - corresponding values have been averaged.
Warning: Duplicate data points have been detected and removed - corresponding values have been averaged.

カテゴリ

Help Center および File ExchangeLabels and Annotations についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by