Replace values in one column in multiple cells in array
조회 수: 5 (최근 30일)
이전 댓글 표시
I'm trying to replace the 5th column in each cell in a cell array with the 5th column of each cell from another cell array. I made the following function, which does this but also replaces the values in all other columns with 0. How do I do this without deleting all other values from the other columns. The function is:
function [X]=replace_cells(cell)
X={};
for i=1:length(cell)
X{i}(:,[5])=cell{i}(:,[5]);
end
댓글 수: 4
채택된 답변
Amos
2016년 2월 23일
Maybe try:
function [X]=replace_cells(cell,X)
for i=1:length(cell)
X{i}(:,[5])=cell{i}(:,[5]);
end
댓글 수: 2
Guillaume
2016년 2월 23일
편집: Guillaume
2016년 2월 23일
Please replace the variable name cell with something that is not a matlab function. While it does not cause any problem in this short function, it is still confusing to the casual reader.
For that matter, using meaningful names for all variables would be much better. How about:
function destination = replace_cell(destination, source, column)
assert(size(destination) == size(source));
for cidx = 1:numel(source)
destination{cix}(:, column) = source{cidx}(:, column);
end
end
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Characters and Strings에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!