How to assign index to array

5 次查看(过去 30 天)
Hi,
I have data and want to assign the index to the data as below:
Input data:
col1 col2 col3 col4
1 3 4 9
3 5 5 7
4 6 11 7
0 3 7 2
I want to assign the index as the size of the data, here the size(rows) of the data is 4, then I want to add a column to assign the serial number as below:
Modified data(added 5th column):
1 3 4 9 1
3 5 5 7 2
4 6 11 7 3
0 3 7 2 4

采纳的回答

per isakson
per isakson 2017-9-16
编辑:per isakson 2017-9-16
Try
>> M(:,end+1) = reshape( [1:size(M,1)], [],1 );
>> M
M =
1 3 4 9 1
3 5 5 7 2
4 6 11 7 3
0 3 7 2 4
reshape may be replace by a blip
>> M(:,end+1) = [1:size(M,1)]';

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