How to plot like the following figure?

1 visualizzazione (ultimi 30 giorni)
I can gnerate the reflectance for different wavelength and diameter. In excel it ends up as a table, where the top row is assigned for diameter, and the leftmost column is assigned for wavelength. The remaining cell values are the reflectance at a particular wavelength and particular diameter. I need to plot like the following figure. Please share the code

Risposta accettata

Image Analyst
Image Analyst il 17 Set 2021
data = readmatrix(xlsfileName);
imshow(data, [], 'XData', [0, 500], 'YData', [300, 1200]);
xlabel('D (nm)')
colormap(jet(256));
colorbar;
Then use text() function to overlay the words.
  2 Commenti
MD AZIZ AR RAHMAN
MD AZIZ AR RAHMAN il 17 Set 2021
Can you please share how should be the data arrangement in excel file?
I have data like
wavelength\diameter : 0 100 200 300 400 500
1200 - - - - - -
1100 - - - - - -
...
.
In this format. should the wavelength and diameter values are selected while importing from excel file? or only the reflactance values marked by ' - '?
Image Analyst
Image Analyst il 17 Set 2021
I recommend using the row and column headers. Then those can be pulled out of the data as the first row and column
data = readmatrix(xlsxFileName);
diameters = data(1, 2:end);
wavelengths = data(2:end, 1);
signal = data(2:end, 2:end);

Accedi per commentare.

Più risposte (1)

the cyclist
the cyclist il 16 Set 2021
I recommend looking at the MATLAB Plot Gallery, finding a figure that is close to what you need, and pulling the code from there.

Categorie

Scopri di più su 2-D and 3-D Plots in Help Center e File Exchange

Prodotti


Release

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by