How to do a 2D surface pot as excel graph XY plane isoSAR?

1 回表示 (過去 30 日間)
Giuseppe Anastasio
Giuseppe Anastasio 2021 年 5 月 2 日
回答済み: Scott MacKenzie 2021 年 6 月 6 日
In attached excel file I need to replicate with matlab "XY plane isoSAR" graph. I also tried with countourf but I'm not capable to do that. How can I do this?
Tahnks for answers
  1 件のコメント
SALAH ALRABEEI
SALAH ALRABEEI 2021 年 6 月 5 日
use contour not contourf. try to increase the levels ex
% code
contour(X,Y,Z,20)

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

回答 (1 件)

Scott MacKenzie
Scott MacKenzie 2021 年 6 月 6 日
f = figure;
f.Color = 'w';
f.Units = 'normalized';
f.Position = [.1 .2 .8 .5];
M1 = readmatrix('https://www.mathworks.com/matlabcentral/answers/uploaded_files/604555/x%20articolo.xlsx', ...
'range', 'B3:V14');
M2 = readmatrix('https://www.mathworks.com/matlabcentral/answers/uploaded_files/604555/x%20articolo.xlsx', ...
'range', 'AA3:AI14');
M3 = readmatrix('https://www.mathworks.com/matlabcentral/answers/uploaded_files/604555/x%20articolo.xlsx', ...
'range', 'AL3:AU20');
tiledlayout(1,3);
nexttile;
contour(M1);
nexttile;
contour(M2);
nexttile;
contour(M3);

カテゴリ

Help Center および File ExchangeDiscrete Data Plots についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by