How to replace first and last element of each matrix in 7x1 cell with 0
    3 ビュー (過去 30 日間)
  
       古いコメントを表示
    
Hi all,
I have a 7x 1 cell of 101x1 double.
I want to replace first and last element of each matrix with 0. Can you help please?
My approach:
for i = 1:length(cell)
        cell{i}((cell(1:1)))=0;
        cell{i}((cell(101:101)))=0;
end 
Unable to use a value of type cell as an index.
0 件のコメント
採用された回答
その他の回答 (1 件)
  Walter Roberson
      
      
 2022 年 7 月 18 日
        NewCell = cellfun(@(C) [0; C(2:end-1); 0], OldCell, 'uniform', 0);
Note: using cell as the name of a variable interfers with calling cell() to create a cell array... and confuses people reading your code.
参考
カテゴリ
				Help Center および File Exchange で Cell Arrays についてさらに検索
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


