how to convert ?3d meshgrid data to 3d matrix.

4 ビュー (過去 30 日間)
Dongsu Lim
Dongsu Lim 2019 年 12 月 13 日
回答済み: Sai Bhargav Avula 2020 年 2 月 17 日
i have a 3 2dimension data.
x(100x100)
y(100x100)
z(100x100)
i want 3 dimension data. like MRI data.
data(100x100x100);
example code
R=5;
r=1;
u=linspace(0,2*pi,100);
v=linspace(0,2*pi,100);
[u,v]=meshgrid(u,v);
x=(R+r.*cos(v)).*cos(u);
y=(R+r.*cos(v)).*sin(u);
z=r.*sin(v);
figure(1)
mesh(x,y,z);
x,y,z to data(100x100x100)
pliz help me
  1 件のコメント
darova
darova 2019 年 12 月 13 日
It's impossible. You have a surface and want to find a volume?

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

回答 (1 件)

Sai Bhargav Avula
Sai Bhargav Avula 2020 年 2 月 17 日
Hi,
As mentioned by darova, it is not possible to create the 3D data. The u v are the corrdinate matrices which are used to calculate the x,y and z values. These x,y,z values correspond to the values of the functions that were used to calculate them at that particular corrdinate. This information cannot be stacked up to from a 3D martix(as because the info you have is of the surface).
In simple terms, you have information of around 30000 points and to create the data you need 1000000 points.
Hope this explains!

カテゴリ

Help Center および File ExchangeSurface and Mesh Plots についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by