フィルターのクリア

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 Center および File ExchangeMatrix Indexing についてさらに検索

タグ

製品


リリース

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by