combined Filled area and contour plotting
    2 次查看(过去 30 天)
  
       显示 更早的评论
    
Hi
I wanted to plot the below type of figure for my X Y Z variable: is it possible to plot them with matlab?

3 个评论
  darova
      
      
 2021-7-26
				It's just a line
X = [1e6 2e6 3e6 4e6 5e6 6e6 7e6 8e6];
Y = [74 71 68 66 64 63 62 61];
Z = [45 47 49 50 51 53 56 59];
plot3(X,Y,Z)
回答(1 个)
另请参阅
类别
				在 Help Center 和 File Exchange 中查找有关 Line Plots 的更多信息
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!



