A,B为n阶矩阵,cond(AB)<=cond(A)cond(B)。()
第1题:
求矩阵A的范数的函数是()。
A.trace(A)
B.cond(A)
C.rank(A)
D.norm(A)
第2题:
11、若要表达从1计算到n的运算组合式,(* …(* (* (* (* 1 1) 2) 3) 4) …n) 定义一个过程。正确的定义为_____。
A.(define (f product counter max-count) (cond ((> counter max-count) product) ((<= counter max-count) (f (* counter product) (counter 1) max-count )) ))###SXB###B.(define (f product counter max-count) (f (* counter product) (counter 1) max-count ))###SXB###C.(define (f product counter max-count) (cond ((> counter max-count) product) ((<= counter max-count) (f (counter*product) (counter+ 1) max-count )) ))###SXB###D.(define (f prod第3题:
【单选题】求矩阵A的范数的函数是()。
A.trace(A)
B.cond(A)
C.rank(A)
D.norm(A)
第4题:
若要表达从1计算到n的运算组合式,(* …(* (* (* (* 1 1) 2) 3) 4) …n) 定义一个过程。正确的定义为_____。
A.(define (f product counter max-count) (f (* counter product) (counter 1) max-count ))#B.(define (f product counter max-count) (cond ((> counter max-count) product) ((<= counter max-count) (f (counter*product) (counter+ 1) max-count )) ))#C.(define (f product counter max-count) (cond ((> counter max-count) product) ((<= counter max-count) (f (* counter product) (counter 1) max-count )) ))#D.(define (f prod第5题:
3、求矩阵A的范数的函数是()。
A.trace(A)
B.cond(A)
C.rank(A)
D.norm(A)