필터 지우기
필터 지우기

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

조회 수: 2 (최근 30일)
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
Alberto Acri
Alberto Acri 2023년 7월 25일
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.

댓글을 달려면 로그인하십시오.

채택된 답변

Voss
Voss 2023년 7월 25일
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}

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

제품


릴리스

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by