필터 지우기
필터 지우기

How to cover a cell array to mat?

조회 수: 2 (최근 30일)
Chuanjung Lin
Chuanjung Lin 2018년 1월 29일
답변: Arun Mathamkode 2018년 2월 1일
Hi all, I have a 1x6 cell array {Vg} that contain different array size as the attached.
I would to cover it to mat, and I use the statement "cell2mat", it always show Error using CAT as the attached.
Have any methods to solve this problem? Thank you.
Vg={};
for i=0:2:10
y=Rawdata(:,2+i);
y_data=find(y>0.93e-9 & y<1.9e-9);
Vg=[Vg x(y_data)];
end
Vg_data=cell2mat(Vg);

채택된 답변

Arun Mathamkode
Arun Mathamkode 2018년 2월 1일
As the error says the dimensions of each element of the cell array you are trying concatenate into a matrix are not consistent. Please refer to the documentation of the cell2mat function. It says ' the contents of cells in the same column must have the same number of columns, although they need not have the same number of rows'. In your case, the elements in the first column of the cell array have different number of columns.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 数据类型转换에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!