How to add a more element in an existing cell array in specific positions?

조회 수: 13 (최근 30일)
Ujwal
Ujwal 2015년 11월 10일
댓글: Ujwal 2015년 11월 10일
Hi, The problems starts like this.
I have a cell array named: FlowRate = cell(1,16);
Initially,
Flow =
[498,1] [398,3] [343,1] [840,3] [899,2] [792,2] [828,4] [440,2] [812,5] [395,4][495,5] [792,1] [876,5] [563,5] [629,1] [280,3]
After some calculation I get an array: l =[3 4 10 16], I have to make add this value [490,1] to cell position mentioned in 'l'.
So, the solution should be:
New_Flow =
[498,1] [398,3] [343,1;490,1] [840,3;490,1] [899,2] [792,2] [828,4] [440,2] [812,5] [395,4;490,1][495,5] [792,1] [876,5] [563,5] [629,1] [280,3;490,1]
I would be grateful to get your support. Than You.

채택된 답변

Stephen23
Stephen23 2015년 11월 10일
편집: Stephen23 2015년 11월 10일
Note that l is not a good variable name, as it is too easy to confuse for other characters.
Try this:
>> C = {[498,1],[398,3],[343,1],[840,3],[899,2],[792,2],[828,4],[440,2],[812,5],[395,4],[495,5],[792,1],[876,5],[563,5],[629,1],[280,3]};
>> idx = [3,4,10,16];
>> new = [490,1];
>> C(idx) = cellfun(@(v)[v;new],C(idx),'UniformOutput',false);
>> C{:}
ans =
498 1
ans =
398 3
ans =
343 1
490 1
ans =
840 3
490 1
ans =
899 2
ans =
792 2
ans =
828 4
... etc

추가 답변 (1개)

Walter Roberson
Walter Roberson 2015년 11월 10일
what_to_add = [490,1];
for K = I
New_Flow{K} = [New_Flow{K}, what_to_add];
end
  댓글 수: 1
Ujwal
Ujwal 2015년 11월 10일
absolutely very short answer. I am sorry for not knowing this simple text too.

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

카테고리

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