3D plot on 3D matrix

11 ビュー (過去 30 日間)
salad9996
salad9996 2020 年 7 月 29 日
コメント済み: Leela Aparna 2023 年 3 月 6 日
Hi guys, suppose I have a 3D array which look like this. How do I do the plotting with these data?
  3 件のコメント
salad9996
salad9996 2020 年 7 月 29 日
X having the values of 1:5:50, Y is the column, and Z
Leela Aparna
Leela Aparna 2023 年 3 月 6 日
Similarly I have two 3 dimensional matrices say A and B with same size. I want plot a graph to show the relation between those two matrices. In my case Size of A=17x17x8 and size of B=17x17x8. How can I plot the graph between these two?

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

回答 (1 件)

KSSV
KSSV 2020 年 7 月 29 日
編集済み: KSSV 2020 年 7 月 29 日
You can use pcolor/ surf. You can plot w.r.t indices.
val = rand(10,5,2) ;
% using pcolor
subplot(211)
pcolor(val(:,:,1))
shading interp
colorbar
subplot(212)
pcolor(val(:,:,2))
shading interp
colorbar
% using surf
subplot(211)
surf(val(:,:,1))
shading interp
colorbar
subplot(212)
surf(val(:,:,2))
shading interp
colorbar
  6 件のコメント
salad9996
salad9996 2020 年 7 月 29 日
Im hoping to plot a graph with the x-axis from x=1:5:50 and the y-axis data would change depending on the z index, val(:,:,z).
KSSV
KSSV 2020 年 7 月 30 日
x = 1:5:50 ;
y = 1:size(val,2) ; % define your y here
[X,Y] = meshgrid(x,y) ;
surf(X,Y,val(:,:,1)') ;

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

カテゴリ

Help Center および File ExchangeData Distribution Plots についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by