필터 지우기
필터 지우기

Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

splitting uneven matrx in to two parts

조회 수: 1 (최근 30일)
PK
PK 2013년 6월 29일
마감: MATLAB Answer Bot 2021년 8월 20일
using mat2cell we can convert a big array in different cells but all are stored in a single variable as double matrices so how can we assign them to seperate variables......ie., we split A=140x13 matrix in to 100x13 and 40x13 with A0=mat2cell(A,[100,40]) command it will be stored as [100x13 double] [ 40x13 double] cells in the same variable ,,,so after splitting how can we pin 100x13 and 40x13 to two different variables

답변 (1개)

Image Analyst
Image Analyst 2013년 6월 29일
Then try this:
A = randi(9, [140, 13]);
A0=mat2cell(A,[100,40])
topRows = A0{1};
bottomRows = A0{2};
% Or even better
topRows2 = A(1:100, :);
bottomRows2 = A(101:end,:);

이 질문은 마감되었습니다.

Community Treasure Hunt

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

Start Hunting!

Translated by