How can I add an index value to an array value?

1 次查看(过去 30 天)
I have an array of reals, like this.
0.1 0.1 0.1 0.1
0.2 0.2 0.2 0.2
0.1 0.2 0.3 0.4
How can I add the horizontal index value, so that the array ends up like this?
1.1 2.1 3.1 4.1
1.2 2.2 3.2 4.2
1.1 2.2 3.3 4.4
I could easily do it with a loop, but I'm convinced there is a one-line solution. I just can't see it.
PS the array is a lot larger than the example.

采纳的回答

Stephen23
Stephen23 2022-6-17
编辑:Stephen23 2022-6-17
M = [0.1,0.1,0.1,0.1;0.2,0.2,0.2,0.2;0.1,0.2,0.3,0.4]
M = 3×4
0.1000 0.1000 0.1000 0.1000 0.2000 0.2000 0.2000 0.2000 0.1000 0.2000 0.3000 0.4000
M = M + (1:size(M,2))
M = 3×4
1.1000 2.1000 3.1000 4.1000 1.2000 2.2000 3.2000 4.2000 1.1000 2.2000 3.3000 4.4000

更多回答(0 个)

类别

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

产品


版本

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by