gpt4 book ai didi

matlab - matlab中的矩阵矩阵

转载 作者:太空宇宙 更新时间:2023-11-03 19:51:08 25 4
gpt4 key购买 nike

我需要建立矩阵矩阵。比如说,对于所有 $1\leq i,j\leq n$ 我必须定义一个矩阵 $p_{ij}$ 这将是一个矩阵 $n\times n$。我能做的 - 它是建立一个矩阵 $P$ 这是 $n^2\times n^2$ - 但是对于 $n= 20$ 内存错误。

你能告诉我如何解决这个问题吗?

最佳答案

使用cell阵列。像这样

c = cell(3,3) %Create cell array of size *3x3*

c =

[] [] []
[] [] []
[] [] []

c{1,1}; = rand(3,3); %Set cell {1,1} to be random matrix of size *3x3*
c{1,2} = ones(4,6) %Set cell {1,2} to be matrix of ones size *4x6*

c =

[3x3 double] [4x6 double] []
[] [] []
[] [] []

等..

关于matlab - matlab中的矩阵矩阵,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5243507/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com