필터 지우기
필터 지우기

Matlab: trasform cell arrays into a matrix

조회 수: 2 (최근 30일)
elisa ewin
elisa ewin 2016년 9월 7일
편집: Andrei Bobrov 2016년 9월 7일
Hi,
I want to trasform U (attacched) in a matrix Z 5 x 12
Z=[0 0 0 0 0 0 0 0 0 0 1933724 260957; 341255 0 0 0 0 0 0 0 0 0 16907 0; 23261 0 0 0 0 0 0 153505 0 420315 0 15372; 0 0 0 0 0 0 0 0 0 5535878 0 0; 0 0 0 0 0 0 0 0 0 16516 0 316637]
Can you help me? Thanks

채택된 답변

Andrei Bobrov
Andrei Bobrov 2016년 9월 7일
편집: Andrei Bobrov 2016년 9월 7일
zz = cat(1,U{:});
zz(cellfun(@isempty,zz)) = {0};
Z = cellfun(@(x)x(1),zz);

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Language Fundamentals에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by