矩阵a
a^2 -- 两个矩阵相乘
a.^2 -- 表示 矩阵对应位置相乘
如下:
a=[ 1,2,3 4,5,6 7,8,9]; disp(a); disp(a^2); disp(a.^2);
结果: