用Octave计算矩阵转置
广告
{{v.name}}
计算\( \left[ \begin{array}{ccc} 1 & 2 \\ 3 & 4 \end{array} \right] ^T \)
程序代码如下
>> [1 2; 3 4]'
ans =

   1   3
   2   4
友链