I have three data each has 961*31 I want to plot the three datas in one graphic in two dimension and three dimension can someone provide any example how to do it

1 次查看(过去 30 天)
like this image
1.PNG

采纳的回答

KSSV
KSSV 2018-11-16
编辑:KSSV 2018-11-16
Read about plot and scatter
N = 100 ;
x = rand(N,1) ;
y = rand(N,1) ;
z = rand(N,1) ;
scatter(x,y,30,z,'filled')
  5 个评论

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 2-D and 3-D Plots 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by