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
1 个评论
采纳的回答
Fangjun Jiang
2018-6-13
Remove the white space in "index (i)"
[~, index(i)] = min (compare_onset(i), [], 2)
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Matrix Indexing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!