Data interpolation problem for excel file

조회 수: 1 (최근 30일)
MUKESH KUMAR
MUKESH KUMAR 2018년 6월 28일
편집: MUKESH KUMAR 2018년 6월 28일
I had a excel file having 500 rows and 3 columns. In first column the data should be within the range of 200-250 but there are some data which are not in this range.So replace those data by using previous data history with in the specific range. Similarly for second column the data range should be 100-150 and replace the unwanted data and also do the same for column third. Thanks in advance

답변 (1개)

Sammit Jain
Sammit Jain 2018년 6월 28일
편집: Sammit Jain 2018년 6월 28일
Hi Mukesh,
I'm assuming that 'previous data history' means 'previous value in that column which was within this range'. This seems like a good application of the fillmissing function in MATLAB
First find the values which are not in your desired range using simple comparison. Set these values to any form of missing value in MATLAB (NaN, [], etc). Once this is done, just use fillmissing with the kind of technique you require for the filling.
Here's a small example:
A = [10 15 17 18 45 11 14 87 43]';
A(A>20) = NaN;
fillmissing(A,'previous');
The original column A is:
A =
10
15
17
18
45
11
14
87
43
After you run the code, it becomes:
10
15
17
18
18
11
14
14
14
Hope this helps.
  댓글 수: 1
MUKESH KUMAR
MUKESH KUMAR 2018년 6월 28일
편집: MUKESH KUMAR 2018년 6월 28일
For replacing a data, use previous 4-5 data sets and based on that find/predict the new data within that specific range. Use loop for all 3 column. Thanks

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Data Import from MATLAB에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by