Filter löschen
Filter löschen

move cells (contained within a cell) to coordinates other than the starting coordinates

2 Ansichten (letzte 30 Tage)
Hi. I have a cell 'matrix_complete' and a coordinate matrix 'coord'.
I need to transform 'matrix_complete' so that:
  • the first row (3x3 cells) of 'matrix_complete' is positioned at coordinates [4,1] (first row of 'coord')
  • the first row (2x3 cells) of 'matrix_complete' is positioned at coordinates [2,2] (second row of 'coord')
  2 Kommentare
Alberto Acri
Alberto Acri am 25 Jul. 2023
I need to make a small clarification in my question.
The 'matrix_complete' cell I need to generate must be a cell of size 4 rows and 2 columns. Inside it I need to allocate the (3x3 cells) at position [4,1] and the (2x3 cells) at position [2,2]. All other positions must be empty.

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Voss
Voss am 25 Jul. 2023
load matrix_complete
load coord
siz = max(check_1_valori_0,[],1);
matrice_completa_new = cell(siz);
for ii = 1:numel(matrice_completa)
matrice_completa_new(check_1_valori_0(ii,1),check_1_valori_0(ii,2)) = matrice_completa(ii);
end
disp(matrice_completa_new);
{0×0 double} {0×0 double} {0×0 double} {2×3 cell } {0×0 double} {0×0 double} {3×3 cell } {0×0 double}

Weitere Antworten (0)

Kategorien

Mehr zu Creating and Concatenating Matrices finden Sie in Help Center und File Exchange

Produkte


Version

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by