Interpolate strings from an x y interval to a corresponding x y interval.

2 views (last 30 days)
I am restructuring a database and I have two tables in different formats but with the same information. Table One is a combination of values and strings where the from-to data are in custom intervals rounded to the nearest '0.25' as follows:
.
Table two is the same range of values and contains all the same integers but is formatted as fixed incremental 'blocks' instead of custom intervals.
I want to take the strings from table 1 and interp them onto table 2 so that if the 'from-to' values of table 2 falls within the range of an interval in table 1 it will have the corresponding strings as imagined below.
I can not seem to find a function that will allow me to perform this task with strings.
Any help would would be very much appreciated, thanks!
  4 Comments
Jay
Jay on 15 Mar 2023
Hello @Peter Wray and @Jan
Can you share the code of the solution because I have the same question and not able to find answers anywhere else on this topic ?
Jan
Jan on 15 Mar 2023
@Jay: But I did post the code in my answer already?! I suggest to open a new question to discuss the details of your problem.

Sign in to comment.

Accepted Answer

Jan
Jan on 6 Mar 2022
The solution is not to do this with strings directly, but with indices:
idx = interp1(table1{:, 1}, 1:height(table1), table2{:, 1});
Now use this index to fill the column of table2.
One problem is, that e.g. the 0.25 appears at final point of one interval and the start point of the next one. To which of the two does 0.25 belong?
  3 Comments
Jan
Jan on 7 Mar 2022
Edited: Jan on 7 Mar 2022
This is failing:
load intervals
intervalfrom = intervals(:,1);
The MAT file intervals.mat contains a variable called lithdataint. blocks.mat contains a variable blocksft. Should I convert the names "intervals" and "blocks" accordingly?
I'd expect a simple solution as:
table2(:, 3) = table1(idx, 3)
Peter Wray
Peter Wray on 7 Mar 2022
Hello, yes you should, I saved it as a matlab table under the names intervals but didn't change the name with code.
I rearanged my data base so it would index correctly (ran into a few issues after the inital one you pointed out), and then ran a fix on the index so it was all positive integers then used your code to add over the strings. Thank you so much and sorry for the bad formating. I'll do much better next time.

Sign in to comment.

More Answers (1)

Peter Perkins
Peter Perkins on 7 Mar 2022
If you had timetables, ths would be a one-liner using synchronize. from and blocksFrom look suspiciously like time vectors. Timetables might make your life easier, but hard to tell.

Categories

Find more on Data Type Conversion in Help Center and File Exchange

Products


Release

R2021b

Community Treasure Hunt

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

Start Hunting!