how to plot a 3D matrix in cartezian coordinate?

1 回表示 (過去 30 日間)
Giselle
Giselle 2020 年 2 月 21 日
コメント済み: darova 2020 年 3 月 6 日
Hello,
I have a 3 dimentional matrix. and each cell has a value. I want to plot this in x-y-z coordinates, where the magnitude of value of each cell define the color of the node(or cell).
I tried scatter3, with no luck. could any body help me?
here is the code to generate the den matrix.
x = linspace(-3,3,512);
y = linspace(-3,3,512);
[X,Y] = meshgrid(x,y);
zz = linspace(0,5,512);
for z=1:512
den(:,:,z)=exp(-1 * ((X).^2+(Y).^2 ))*(100/z^2); %den is a 512x512x512 matrix
end
I looked trough other questions here, but couldn't find the answer.
  3 件のコメント
Giselle
Giselle 2020 年 3 月 6 日
Hi, I did, and it is not what I want. I mean I need to have a full plot, before slice it.
darova
darova 2020 年 3 月 6 日
scatter3?
isosurface

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

回答 (1 件)

Daniel Vieira
Daniel Vieira 2020 年 2 月 21 日
  1 件のコメント
Giselle
Giselle 2020 年 3 月 6 日
Hi, the matlab 2016 does not have this option.

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

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by