Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
5.3.0 - Português

Change language to:
English - Français - 日本語 -

Please note that the recommended version of Scilab is 2024.0.0. This page might be outdated.
See the recommended documentation of this function

Manual Scilab >> Funções Elementares > kron

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.

Exemplos

A=[1,2;3,4];
kron(A,A)
A.*.A
sparse(A).*.sparse(A)
A(1,1)=%i;
kron(A,A)
<< isreal Funções Elementares lex_sort >>

Copyright (c) 2022-2023 (Dassault Systèmes)
Copyright (c) 2017-2022 (ESI Group)
Copyright (c) 2011-2017 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Wed Jan 26 16:24:34 CET 2011