x=[-2.5:0.25:2.5];y=exp(-x.*x);stairs(x,y);title('stairs plot');

问题描述:

x=[-2.5:0.25:2.5];y=exp(-x.*x);stairs(x,y);title('stairs plot');
其中y=exp(-x.*x)中的.

.*是矩阵点乘,则要求参与运算的矩阵必须是相同维数的,是每个对应元素的逐个相乘.