Optical Transfer Function 3D Mesh

6 次查看(过去 30 天)
Hi everyone, I am new to matlab coding and need some help!!
I am attempting to make a 3D mesh from the code below, however I am keep getting error codes!
p=(0:0.01:1);
plot(p,H)
title('Optical Transfer Function')
xlabel('x')
ylabel('H')
legend('H VS x')
[X,Y] = meshgrid(0:0.01:1);
mesh(X,Y)

采纳的回答

Star Strider
Star Strider 2019-11-28
Try this:
[X,Y] = meshgrid(-1:0.01:1);
R = sqrt(X.^2 + Y.^2) + eps;
Z = (2/pi)*((acos(R))-(R).*sqrt(1-(R).^2));
figure
mesh(X, Y, abs(Z))
grid on
then modify the code to get the plot in the image, for example:
Z = (2/pi)*((acos(R))-(R).*sqrt(1-(R).^2)) .* (R <= 1);
Experiment to get the result you want.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Surface and Mesh Plots 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by