フィルターのクリア

How to store matrix whose dimension is changing in each iteration ?

1 回表示 (過去 30 日間)
Manoj Kumar
Manoj Kumar 2019 年 5 月 24 日
編集済み: KALYAN ACHARJYA 2019 年 5 月 28 日
hello all
How to store matrix whose dimension is changing in each iteration?
can anyone expalin with example?

回答 (2 件)

KALYAN ACHARJYA
KALYAN ACHARJYA 2019 年 5 月 24 日
編集済み: KALYAN ACHARJYA 2019 年 5 月 24 日
Cell array
result=cell(1,iter);
for i=1:iter
%say matrix1 have changes the dimention in each iteration
% do operation, say matrix1 is the result in this iteraion.
result{i}=matrix1
end
Exampele:
>> A=rand(2,4)
A =
0.9324 0.2304 0.8681 0.9226
0.2963 0.1660 0.2219 0.9020
>> B=magic(3)
B =
8 1 6
3 5 7
4 9 2
>> result={A,B}
result =
1×2 cell array
{2×4 double} {3×3 double}
>>
  3 件のコメント
Manoj Kumar
Manoj Kumar 2019 年 5 月 28 日
it's not working.
KALYAN ACHARJYA
KALYAN ACHARJYA 2019 年 5 月 28 日
編集済み: KALYAN ACHARJYA 2019 年 5 月 28 日
Where is the issue, can you share?
As per your question>>
How to store matrix whose dimension is changing in each iteration ?
Best way Celll Array (Alreadt shown the example too)
>> A=rand(2,4)
A =
0.9324 0.2304 0.8681 0.9226
0.2963 0.1660 0.2219 0.9020
>> B=magic(3)
B =
8 1 6
3 5 7
4 9 2
>> result={A,B}
result =
1×2 cell array
{2×4 double} {3×3 double}
>>
Here we have saved the two matrix having sizes 2x4 and 3x3 in result cell array.

サインインしてコメントする。


Raj
Raj 2019 年 5 月 24 日
編集済み: Raj 2019 年 5 月 24 日
Use cell array
for i = 1:10
A = rand(i,i) % A size is changing with every iteration
B{i} = A; % Store A as cell
end
Required_matrix=cell2mat(B(1,10)) % Suppose I want to extract the 10th iteration matrix
  1 件のコメント
Manoj Kumar
Manoj Kumar 2019 年 5 月 28 日
its working direcctly, but If we get A return from functioion then how wil to strore it.
e.g. [A, B] = function1(arg1, arg2).
Actually I trying to fix this issue.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeMatrices and Arrays についてさらに検索

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by