How to extract a part of a given vector and store it in a new vector using loops (for loop) ?

15 ビュー (過去 30 日間)
Given vector: [1 2 3 4 5 6 7 8 9 10];
New vector, let's say: [4 5 6 7].
  2 件のコメント
Azzi Abdelmalek
Azzi Abdelmalek 2013 年 10 月 21 日
編集済み: Azzi Abdelmalek 2013 年 10 月 21 日
Is it homework? If yes, what have you tried so far?
Zack Shane
Zack Shane 2013 年 10 月 21 日
編集済み: Azzi Abdelmalek 2013 年 10 月 21 日
This is my attempt:
seg1 = input('Enter the lower limit of the segment: ');
seg2 = input('Enter the higher limit of the segment: ');
ran = seg2-seg1+1;
while seg1<seg2+1
data2 = data1(seg1);
seg1 = seg1+1;
end

サインインしてコメントする。

採用された回答

sixwwwwww
sixwwwwww 2013 年 10 月 21 日
Dear Abhisek, here is the code for it:
a = [1 2 3 4 5 6 7 8 9 10];
indices_of_values2save = [4 5 6 7];
count = 1;
for i = 1:length(a)
if any(i == indices_of_values2save)
b(count) = a(i);
count = count + 1;
end
end
I hope it helps. Good luck!

その他の回答 (1 件)

Image Analyst
Image Analyst 2013 年 10 月 21 日
編集済み: Image Analyst 2013 年 10 月 21 日
data2 = data1(seg1:seg2); % Extract indexes seg1 through seg2 into new vector.

カテゴリ

Help Center および File ExchangeMatrix Indexing についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by