Plot Sea Current in Time vs Depth

6 ビュー (過去 30 日間)
eko supriyadi
eko supriyadi 2017 年 8 月 8 日
コメント済み: KSSV 2017 年 8 月 8 日
Hello everyone!
I'm trying to plot a contour of sea current with time (in month) on the x axis vs depth (in meter) on the y axis.
The data (excel) is attached
I'v tried multiple times to do this but cant seem to work it out
Thanks in advance!!

採用された回答

KSSV
KSSV 2017 年 8 月 8 日
[num,txt,raw] = xlsread('current data') ;
depth = num(:,1) ;
currents = num(:,2:end) ;
[nx,ny] = size(currents) ;
%%plot of currents vs depth
figure
hold on
for i = 1:ny
x = 1:12 ;
y = currents(i,:) ;
z = depth(i)*ones(size(x)) ;
plot(x,y,'color',rand(1,3))
end
  2 件のコメント
eko supriyadi
eko supriyadi 2017 年 8 月 8 日
thanks for your reply. It's work if i'm required the line graph.. but, i need like this image (attach).
contour not line graph.
thanks
KSSV
KSSV 2017 年 8 月 8 日
It's good you have attached a image....
[num,txt,raw] = xlsread('current data') ;
depth = num(:,1) ;
months = 1:12 ;
[X,Y] = meshgrid(months,depth) ;
currents = num(:,2:end) ;
contourf(X,Y,currents)

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLighting, Transparency, and Shading についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by