How to plot values inside a rectangular cell of a mesh ?

8 ビュー (過去 30 日間)
MD EQBAL
MD EQBAL 2021 年 12 月 25 日
回答済み: Sivani Pentapati 2022 年 1 月 3 日
d=5;
x1=zeros(1,d)+20;
y1=linspace(4,16,d);
z1=linspace(-1,3,d)';
% Formation of mesh grid for OBJECT
[XX1,YY1]=meshgrid(x1,y1);
Yt1=YY1';
zz1=repmat(z1,1,d);
A1=mesh(XX1,Yt1,zz1);
axis([-10 50 -10 50])
VF=zeros(4,4)+0.0024;
I have created a mesh A1 using the above code.
i have another 4x4 matrix VF.I want to plot the numeric values of VF inside each rectangular cell.
  6 件のコメント
MD EQBAL
MD EQBAL 2021 年 12 月 26 日
Yes,exactly
Matt J
Matt J 2021 年 12 月 26 日
I'd be curious to know what the purpose of this is, and why it is preferable to using a uitable.

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

採用された回答

Sivani Pentapati
Sivani Pentapati 2022 年 1 月 3 日
Hi MD,
As mentioned above, In order to display the values of a matrix across a mesh, you can used text function with an offset for each location in the grid to display the values at the center. Please refer to the attached script for a temporary workaround.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeAnnotations についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by