how to make such type of plot in matlab? we have 4 models and each model have different depth and different velocities v1, v2.

2 次查看(过去 30 天)
  1 个评论
Mathieu NOE
Mathieu NOE 2020-12-9
hello
when you use the plot function, it can handle multiple groups of x, y data pairs , and they don't need to be of the same length :
example : first data x,y has length 10 , second 20 :
plot ((1:10),sin((1:10)*pi/10),'b',(1:20),cos((1:20)*pi/10),'r'); grid

请先登录,再进行评论。

采纳的回答

weikang zhao
weikang zhao 2020-12-9
I tried to restore part of the picture by visually inspecting the values. As a demonstration, two lines (model A & model LE) are provided.
clear
Fig = figure;
hold on;
%% prepare data
model_A = [4,4.5,6,6.8,8,8.5;0,5,17,30,40,45];
model_A = kron(model_A,[1,1]);
model_A = [model_A(1,2:end);model_A(2,1:end-1)];
model_LE = [4,5,5.6,6.2,6.4,6.6,6.7,7.2;0,2,5,15,20,25,32,45];
model_LE = kron(model_LE,[1,1]);
model_LE = [model_LE(1,2:end);model_LE(2,1:end-1),];
line1 = plot(model_A(1,:),model_A(2,:),'k');
line2 = plot(model_LE(1,:),model_LE(2,:),'k','LineWidth',2);
Axes = Fig.CurrentAxes;%Get the Axes object
xlabel('Vp(km/s)');%Set x label
ylabel('depth(km)');%Set y label
legend('A','LE');%Add legend
set(Axes,'XAxisLocation','top');%Set x axis to the top
set(Axes,'YDir','reverse');%Reverse y axis
axis([4,9,0,50]);%Set axis limits and aspect ratios
have fun!

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Graphics Object Properties 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by