フィルターのクリア

plot 2D gride

2 ビュー (過去 30 日間)
Abdulrahman Mohamed
Abdulrahman Mohamed 2022 年 4 月 5 日
回答済み: Voss 2022 年 4 月 6 日
I want to plot a gride of pressure distribution in x and y direction
x=1:15;
y=1:15;
Pressure=Psave; (%matrix size (1125,1))
  2 件のコメント
Akira Agata
Akira Agata 2022 年 4 月 5 日
Question for clarification:
Why the matrix size of the variable Pressure becomes 1125, instead of 225 (=15 x 15) ?
Abdulrahman Mohamed
Abdulrahman Mohamed 2022 年 4 月 5 日
sorry it is 225

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

回答 (1 件)

Voss
Voss 2022 年 4 月 6 日
x = 1:15;
y = 1:15;
% some 225x1 Pressure values:
Pressure = reshape(5000-abs(2*x-y.'),[],1);
size(Pressure)
ans = 1×2
225 1
% reshape Pressure to numel(y)-by-numel(x), 15x15.
% your reshape might have to be different, depending on how the order of
% the elements in Pressure relates to x and y
surface(x,y,reshape(Pressure,numel(y),[]));
cb = colorbar();
xlabel('x')
ylabel('y')
ylabel(cb,'Pressure')
title('Pressure')
axis tight

カテゴリ

Help Center および File Exchange2-D and 3-D Plots についてさらに検索

タグ

製品


リリース

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by