Scilab 5.3.1
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
kron
produto de Kronecker (.*.)
Seqüência de Chamamento
kron(A,B) A.*.B
Descrição
kron(A,B)
ou A.*.B
retorna o
produto tensorial de Kronecker entre duas matrizes A
e
B
. A matriz resultante tem a seguinte forma de blocos:
| A(1,1) B ..... A(1,n) B | | . . | A .*. B = | . . | | . . | | A(m,1) B ..... A(m,n) B |
Se A
é uma matriz m x n
e
B
é uma matriz p x q
, então
A.*.B
é uma matriz (m*p) x
(n*q)
.
A
e B
podem ser matrizes
esparsas.
<< cumsum | Matrix operations | prod >> |