Surface plot form 1d data

4 次查看(过去 30 天)
mk_ballav
mk_ballav 2019-2-18
I want to make a mesh plot from 1D equation. I have an one-dimensional equation. I want to make a mesh plot with such equation. I am expecting the diagonal of the matrix resulting solution of equation.
%% 1D line plot
x = linspace(0,1000,1000);
C = x.*(1-2/3*x);
figure(1):plot(x,C)
%% create 2D mesh from x-cordinate;
[X,Y] = meshgrid(x,x);
%%% how to Convert C to 2D matrix
surf(X,Y,CC)

回答(1 个)

Star Strider
Star Strider 2019-2-18
We have absolutely no idea what result you are expecting.
Try this:
%% 1D line plot
x = linspace(0,1000,1000);
C = @(x) x.*(1-2/3*x);
figure(1)
plot(x,C(x))
%% create 2D mesh from x-cordinate;
[X,Y] = meshgrid(x);
%%% how to Convert C to 2D matrix
surf(X,Y,C(X+Y), 'EdgeColor','none')

类别

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