在以下脚本中,矩阵图看起来像噪声。什么会引起噪音?
figure
[x y] = meshgrid(-4:0.05:4); % Generate x and y data
axis([-3 3 -3 3 -3 3])
z = x.^2+y.^2; % Solve for z data
surf(x,y,z) %Plot the surface
figure
z = x^2+y^2; % Solve for z data
surf(x,y,z) %Plot the surface
答案 0 :(得分:3)
如果x是矩阵,则数学x.^2
和x^2
是两个不同的运算。
使用z = x.^2
执行元素明智的乘法
这意味着矩阵中的每个值都将自行乘以。
示例:强>
x =
1 2
3 4
x.^2 =
1 4
9 16
使用z = x^2
执行矩阵乘法
示例:强>
x =
1 2
3 4
x^2 =
7 10
15 22