Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
5.3.1 - English

Change language to:
Français - 日本語 - Português

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

Scilab help >> Elementary Functions > Matrix operations > kron

kron

Kronecker product (.*.)

Calling Sequence

kron(A,B)
A.*.B

Description

kron(A,B) or A.*.B returns the Kronecker tensor product of two matrices A and B. The resulting matrix has the following block form:

If A is a m x n matrix and B a p x q matrix then A.*.B is a (m*p) x (n*q) matrix.

A and B can be sparse matrices.

Examples

A=[1,2;3,4];
kron(A,A)
A.*.A
sparse(A).*.sparse(A)
A(1,1)=%i;
kron(A,A)
<< cumsum Matrix operations prod >>

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:
Thu Mar 03 10:59:35 CET 2011