how to plot a distribution curve

hi, I want to plot a chart like attached figure with Matlab, it is for steady state head distribution curve, can anyone help me? thanks

1 Kommentar

dpb
dpb am 15 Jul. 2018
Probably
doc contour
can help.
You might attach the data as .mat file; somebody may take time to see how to use it...

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Aquatris
Aquatris am 15 Jul. 2018

0 Stimmen

Here is a sample code with made up x, y, and z;
x = 0:10:100;
y = 0:10:200;
[X,Y] = meshgrid(x,y);
Z = X.^2+Y.^2;
[~,h] = contour(X,Y,Z);
set(h,'ShowText','on')
As suggested in the comments, you can look into the documentation for 'contour' function to learn more and be able to obtain the graph you want.

Kategorien

Mehr zu 2-D and 3-D Plots finden Sie in Hilfe-Center und File Exchange

Gefragt:

am 15 Jul. 2018

Beantwortet:

am 15 Jul. 2018

Community Treasure Hunt

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

Start Hunting!

Translated by