필터 지우기
필터 지우기

cell2array with different dimension cells.....

조회 수: 25 (최근 30일)
Shivang Patel
Shivang Patel 2015년 2월 22일
편집: Stephen23 2015년 2월 22일
my cellarray is 1x4....
I want to convert it into array... but dimensions are different for last cell...
For that, i was tried this code...
maxSize = max(cellfun(@numel,imgData)); %# Get the maximum vector size
fcn = @(x) [x, nan(1,maxSize-numel(x))]; %# Create an anonymous function
rmat = cellfun(fcn,imgData,'UniformOutput',false); %# Pad each cell with NaNs
rmat = vertcat(rmat{:}) %# Vertically concatenate cells
and it show me error !!
so, any solution for this problem... Thank you in advance...

채택된 답변

Stephen23
Stephen23 2015년 2월 22일
편집: Stephen23 2015년 2월 22일
There are a couple of issues here
  1. You need to use size , not numel to get the size of the array in one dimension. Use size's second dimension option to specify which dimension you want to measure.
  2. You concatenate the NaN-padding using square brackets to join them horizontally [x,nan(..)]. Square brackets can concatenate only along the first or second dimension (i.e. [x;y] and [x,y] respectively), but you require the third dimension (because this is where your arrays have different sizes). For this you can use padarray.
As an alternative, you could use cat to concatenate them in the dimension that they are different (e.g. the third in your example). This does not require adding the NaN's, so you need to decide what is best for your situation.
cat(3,imgData{:})
  댓글 수: 1
Shivang Patel
Shivang Patel 2015년 2월 22일
@Stephen Cobeldick you generous...
thanks for suggestion... to use " cat " or " NAN "...
I prefer cat ... Because i just want to make 3 dimensional array to combining 4 different cell array...
A lot's of thanks...

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

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by