我想在 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
等等...
我plot::matrixplot
在 mupad 上找到了,但它有两个问题:
首先它在 mupad 但我想要在脚本环境中做同样的事情
其次它只绘制这些类型的数据:
f(x,y)=z
mupad 样本:
A := [[2, 1, 1],
[3, 4, 3],
[3, 5, 4],
[2, 6, 5]]:
plot(plot::Matrixplot(A))