Update matrix using vector of column index

4 次查看(过去 30 天)
I have a 2-dim matrix like this:
0.3436 0.3283 0.3890 0.0274
0.1137 0.4443 0.3484 0.0889
0.2748 0.3124 0.4074 0.0439
and a vector with column indexes for each row
3
2
2
Task is to invert values to get result like this:
0.3436 0.3283 -0.3890 0.0274
0.1137 -0.4443 0.3484 0.0889
0.2748 -0.3124 0.4074 0.0439
I believe there is a simple way to do that efficiently without for-loop cycles. Any idea?

采纳的回答

the cyclist
the cyclist 2017-3-25
编辑:the cyclist 2017-3-25
Looks like a job for linear indexing:
M = [0.3436 0.3283 0.3890 0.0274
0.1137 0.4443 0.3484 0.0889
0.2748 0.3124 0.4074 0.0439];
v = [3 2 2];
[m,n] = size(M);
linearIndex = sub2ind([m n],1:m,v);
M(linearIndex) = -M(linearIndex)
Note that the 2nd and 3rd arguments to sub2ind have to be the same shape, so make sure they are both column vectors, or both row vectors, but not mixed.

更多回答(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