How to generate 3D surface from 2D graph

11 ビュー (過去 30 日間)
Khalid Hasan
Khalid Hasan 2018 年 2 月 22 日
編集済み: Chunru 2022 年 5 月 11 日
Hi everyone, I am trying to generate a 3D surface from a 2D graph, but haven't succeeded yet. Please help me if there is any possible way to do it. I have attached the code, the equation, corresponding 2D graph, and possible shape which i want to generate. Thank you in advance.
<<
<<
<<
<<
>>
>>
>>
>>
code:
a=0:0.1:2.4
c=sqrt(a.^2+4)
p=23e-7./(c.^6)
plot(a,p)
xlabel('Distance')
ylabel('power')
  1 件のコメント
Asser Abdelgawad
Asser Abdelgawad 2022 年 5 月 10 日
Try using the cylinder() function, though that only works if you are rotating about the x-axis to generate your 3D surface.

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

回答 (1 件)

Chunru
Chunru 2022 年 5 月 11 日
編集済み: Chunru 2022 年 5 月 11 日
a = (0:0.1:2.4)';
theta = 0:360;
c= sqrt(a.^2+4);
p = 23e-7./(c.^6);
pp = repmat(p', [length(theta) 1]);
[aa, tt] = meshgrid(a, theta);
xx = aa.*cosd(tt);
yy = aa.*sind(tt);
figure
plot(a,p)
xlabel('Distance')
ylabel('power')
% whos
figure
surf(xx, yy, pp, 'EdgeColor', 'none')
% Alternatively
a = (-2.4:0.1:2.4)';
x = a; y = a;
[xx, yy] = meshgrid(x, y);
pp = 23e-7./(xx.^2+yy.^2+4).^3;
figure
surf(xx, yy, pp, 'EdgeColor', 'none')

カテゴリ

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