Hi, I want to write a code that locates the nth value of matrix x= [2,4,6,8,1​0,12,14,16​,18,20] where n is [1:10]. How could I write that?

1 次查看(过去 30 天)
Hi, I want to write a code that locates the nth value of matrix x= [2,4,6,8,10,12,14,16,18,20] where n is [1:10]. How could I write that?

采纳的回答

Atsushi Ueno
Atsushi Ueno 2021-4-13
>> x= [2,4,6,8,10,12,14,16,18,20];
>> x(1:10)
ans =
2 4 6 8 10 12 14 16 18 20
>> n=[1:10];
>> x(n)
ans =
2 4 6 8 10 12 14 16 18 20

更多回答(1 个)

Steven Lord
Steven Lord 2021-4-13
That's basic linear indexing. See the "Indexing with a Single Index" section on this documentation page for more information.
x = 2:2:20
x = 1×10
2 4 6 8 10 12 14 16 18 20
n = 1:5
n = 1×5
1 2 3 4 5
y = x(n)
y = 1×5
2 4 6 8 10
z = x(3:8)
z = 1×6
6 8 10 12 14 16

类别

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

标签

产品


版本

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by