I want to store multiple entries in one location in matrix
8 ビュー (過去 30 日間)
古いコメントを表示
I want to form this type of matrix. kindly tell me the way to form such matrix., also how can i edit a single entry of any location.
Like in this matrix, if i want to change the middle entry i.e. 1/5 of first row and second column with new value 5. How can i change it.
Please provide a solution.
(1,1,1) (1/6, 1/5, 1/4)
(4, 5, 6) (1, 1, 1)
Thankyou!
I have akso attached a png file of my matrix.
0 件のコメント
回答 (1 件)
KSSV
2022 年 5 月 10 日
編集済み: KSSV
2022 年 5 月 10 日
% Dummy data demo
A = cell(2,3) ;
for i = 1:2
for j = 1:3
A{i,j} = rand(1,3) ;
end
end
A
You can access the cell array using: A{1,1}, A{2,3} etc.
You can print the specific cell array element using:
A{1,1}(1)
A{2,2}(3)
You can chnge any value in the cell array using:
A{1,1} = [1 2 3] ; % changing entire cell array (1,1)
A{2,2}(3) = 0 ; % changing third element of cell array (2,2)
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Fuzzy Logic Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!