필터 지우기
필터 지우기

what is the meaning of this code

조회 수: 1 (최근 30일)
praveen singathi
praveen singathi 2021년 3월 20일
댓글: praveen singathi 2021년 3월 20일
for i=1:1:n
M(:,i)=ca{i}(:);
end

채택된 답변

Walter Roberson
Walter Roberson 2021년 3월 20일
ca is a cell array. The first n entries of the cell array are to be reshaped into vectors and stored as columns of M. You would get an error if the number of elements in each entry is not the same.
In some cases, the code could be replaced with a call to cell2mat(), depending on what the shape of the entries is.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Multidimensional Arrays에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by