私の質問はこれと非常に似ていますが、その答えを私の問題に適用する方法を正確に管理できません。
変数を使用してベクトルをループしており、k
index の単一の値を除くベクトル全体を選択したいと考えていますk
。
何か案が?
for k = 1:length(vector)
newVector = vector( exluding index k); <---- what mask should I use?
% other operations to do with the newVector
end