I'm trying to plot a matrix with temperature values ​​with 5450x5450 using pcolor.
This temperature matrix comes from a netcdf file from the GOES-16 satellite.
With it also comes a matrix of longitudes and one of latitudes of the same dimension.
I Tried:
s = pcolor(arrayLonFullDisk, arrayLatFullDisk,arrayTempFullDisk);
s.FaceColor = 'interp';
colormap(jet);
But I only have an all black graphic as an answer.

 採用された回答

KSSV
KSSV 2022 年 1 月 5 日

1 投票

s = pcolor(arrayLonFullDisk, arrayLatFullDisk,arrayTempFullDisk);
shading interp
colormap(jet);

その他の回答 (0 件)

製品

リリース

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by