标签: matlab plot surface mupad
我想在matlab上绘制一个带有数值数据的表面,如:
f(x,y,z) = w
等...
我在mupad上找到plot::matrixplot,但它有两个问题:
plot::matrixplot
首先是在mupad上,但我想在脚本环境中做同样的事情
第二,它只绘制这些类型的数据:f(x,y)=z
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