matlab中kron对两个矩阵做的怎样的变换,不懂
来源:学生作业帮 编辑:大师作文网作业帮 分类:综合作业 时间:2024/11/12 06:36:22
matlab中kron对两个矩阵做的怎样的变换,不懂
KRON(X,Y) is the Kronecker tensor product of X and Y.
The result is a large matrix formed by taking all possible
products between the elements of X and those of Y. For
example, if X is 2 by 3, then KRON(X,Y) is
[ X(1,1)*Y X(1,2)*Y X(1,3)*Y
X(2,1)*Y X(2,2)*Y X(2,3)*Y ]
看下面的例子就很快明白了
x=[1 2;3 4]
x =
1 2
3 4
>> y=[1 0;0 1]
y =
1 0
0 1
>> kron(x,y)
ans =
1 0 2 0
0 1 0 2
3 0 4 0
0 3 0 4
The result is a large matrix formed by taking all possible
products between the elements of X and those of Y. For
example, if X is 2 by 3, then KRON(X,Y) is
[ X(1,1)*Y X(1,2)*Y X(1,3)*Y
X(2,1)*Y X(2,2)*Y X(2,3)*Y ]
看下面的例子就很快明白了
x=[1 2;3 4]
x =
1 2
3 4
>> y=[1 0;0 1]
y =
1 0
0 1
>> kron(x,y)
ans =
1 0 2 0
0 1 0 2
3 0 4 0
0 3 0 4
matlab中kron对两个矩阵做的怎样的变换,不懂
MATLAB中矩阵变换函数是怎样的
已知一对相似矩阵,怎样求取对应的变换矩阵?在matlab中怎么求?
matlab的矩阵变换问题
matlab矩阵变换利用matlab矩阵访问命令对下面的矩阵做初等行变换使其成为一个上三角矩阵A=1 -2 -1 0 2
关于matlab 矩阵的初等变换
MATLAB中两个矩阵相乘的问题
matlab中怎样求矩阵的特征向量?
怎样使用MATLAB或者是LINGO求对两个矩阵之间的各个元素分别求和?
matlab中如何对傅立叶变换后的函数作图
有关matlab的问题---怎样从两个矩阵中取出相同元素
线性代数中矩阵的行变换问题,虽然答案可以做对,但是老不知道为什么,