问题

软件 >> Calculator >> Bug
Questions in category: Bug (Bug).

[Bug] Calculator 矩阵输入 Bug

Posted by haifeng on 2022-09-30 20:46:35 last update 2022-09-30 23:23:08 | Answers (0) | 收藏


B=[3 21 27/4;
1 -1 0;
-8 -2 37/4]

输入该矩阵, 出现 Bug.


>> B=[3 21 27/4;
B=[3 21 27/4;
1 -1 0;
-8 -2 37/4]
input> [3,21,27/4;1-1,0;-8,-2,37/4]
det(B)=0
----------------------------
 type: matrix
 name: B
value:
3       21      27/4
1-1     0       0
-8      -2      37/4

determinant: 0
--------------------


已经修复

>> B=[3 21 27/4;
B=[3 21 27/4;
1 -1 0;
-8 -2 37/4]
input> [3,21,27/4;1,-1,0;-8,-2,37/4]
det(B)=-289.50
----------------------------
 type: matrix
 name: B
value:
3       21      27/4
1       -1      0
-8      -2      37/4

determinant: -289.50
--------------------