how can I plot several time series on a plane

조회 수: 4 (최근 30일)
Samaneh Arzpeima
Samaneh Arzpeima 2018년 7월 6일
댓글: Samaneh Arzpeima 2018년 7월 9일
I have a plane and a set of velocity data. Now I need to plot each data set at one specified coordinate.  what I think of is something like the one that I attached here. Plot the first wave(t,v) at x=21km y=17km ,then offset the next 4 waves horizontally then offset the whole 5 waves vertically and repeat it. I have my wave data's and make grids on the plane. I wonder how I can plot each wave on one grid. 2d or 3d, both will be fine.
Thank you
  댓글 수: 3
Samaneh Arzpeima
Samaneh Arzpeima 2018년 7월 6일
I am so sorry.Done
KSSV
KSSV 2018년 7월 9일
subplot

댓글을 달려면 로그인하십시오.

답변 (1개)

KSSV
KSSV 2018년 7월 9일
% 5X3 grid of subplots
for i = 1:15
subplot(5,3,i)
plot(rand(10,1)) ;
axis off
end
  댓글 수: 1
Samaneh Arzpeima
Samaneh Arzpeima 2018년 7월 9일
Thank you, Sir, but I need to plot these on a surface(◯km×◯km) and at specific locations.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Graphics Performance에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by