An array for multiple LHS assignment cannot contain expressions

1 次查看(过去 30 天)
I have array of values (192x2) and I want find the minimal value index (I don't care about the value);
This syntax makes sense to me but is not permitted:
index = zeros (ratio_channels, 1);
for i = 1: ratio_channels
[~, index (i)] = min (compare_onset(i), [], 2)
end
Error: An array for multiple LHS assignment cannot contain expressions.
Running it another way works but doesn't give me what I want (the value but not the index):
for i = 1: ratio_channels
index (i) = min (compare_onset(i), [], 2)
end

采纳的回答

Fangjun Jiang
Fangjun Jiang 2018-6-13
Remove the white space in "index (i)"
[~, index(i)] = min (compare_onset(i), [], 2)

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Matrix Indexing 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by