Writing to a new matrix after filtering outliers form original matrix

1 回表示 (過去 30 日間)
Greg B.
Greg B. 2016 年 3 月 7 日
コメント済み: Moe_2015 2016 年 3 月 7 日
Greetings. I am reading in a matrix of ~10,000 values. I want to go through each element and determine if that value is in between a certain boundary limit. Given a for loop with a nested if-statement, how do I write to a new matrix, 'newdata', other than just printing out the last value in the original matrix, 'data'? My code is below:
clc;
clear all;
close all;
data = load('data');
for i = 1:length(data)
x = data(i);
limits = 5;
if (x < limits) && (x > (limits*-1))
newdata = [x];
end
end
Thank you for the help.

採用された回答

Moe_2015
Moe_2015 2016 年 3 月 7 日
This should work. Basically run another index called "k" as a sum that only increases when the inequalities are satisfied.
clc;
clear all;
close all;
data = load('data');
k=0;
for i = 1:length(data)
x = data(i);
limits = 5;
if (x < limits) && (x > (limits*-1))
k=k+1;
newdata(k) = x;
end
end
  2 件のコメント
Greg B.
Greg B. 2016 年 3 月 7 日
Thank you, sir! This solution works. I am now iterating through the data matrix and with the 'k' index, I am now writing all the values that meet the inequality to the new matrix, 'newdata'. Great!
Moe_2015
Moe_2015 2016 年 3 月 7 日
No problem! Glad I could help.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by