如何在matlab上绘制带有数值数据的三维表面图

时间:2018-04-25 14:20:59

标签: matlab plot surface mupad

我想在matlab上绘制一个带有数值数据的表面,如:

f(x,y,z) = w

  • f(1,3,5)= 12
  • f(2,4,6)= 3
  • f(3,8,12)= 2
  • f(2,13,22)= 1

等...

我在mupad上找到plot::matrixplot,但它有两个问题:

  • 首先是在mupad上,但我想在脚本环境中做同样的事情

  • 第二,它只绘制这些类型的数据:f(x,y)=z

mupad样本:

A := [[2, 1, 1],
  [3, 4, 3],
  [3, 5, 4],
  [2, 6, 5]]:
plot(plot::Matrixplot(A))

sample of plot::matrixplot

0 个答案:

没有答案