+ Reply to Thread
Results 1 to 7 of 7

UDF for interpolation

  1. #1
    Forum Contributor
    Join Date
    04-16-2020
    Location
    Alberta, Canada
    MS-Off Ver
    365
    Posts
    230

    UDF for interpolation

    to hopefully build on this thread: https://www.excelforum.com/excel-for...ml#post5679345

    I'm looking to create a User Designed Function that will figure out 'A' and 'B' for the attached spreadsheet, and if possible for 'ta', which is a goal seek. There is a interpolation module in the sheet (not working), but I'd like the function to be able to look up the table and then find 'LowSigma', 'LowSigma2', and others that are based on consistent locations of the table.

    for example: when looking up 'A', it would be great to be able to put in @InterpVol("Table1",O12,O13) and it finds the rest.


    Sample1 of the attached files is the original way I was doing it so you can see the math.
    Attached Files Attached Files

  2. #2
    Forum Guru
    Join Date
    04-13-2005
    Location
    North America
    MS-Off Ver
    2002/XP, 2007, 2024
    Posts
    16,386

    Re: UDF for interpolation

    It was difficult to understand what you are doing here. When I looked at your proposed UDF and your data, I could not tell what data you intended to be the "sigma" data and what data should go in the "vol" parameters.

    However, knowing that the UDF was supposed to do linear interpolation, I made up a table of x and y values and used your function and my own linear interpolation function to compare, and could then compare the results. It appears that the proposed UDF is working just fine for linear interpolation. I'm not sure I understand your question.

    Exactly what is your question, and what help do you need to resolve the issue?
    Quote Originally Posted by shg
    Mathematics is the native language of the natural world. Just trying to become literate.

  3. #3
    Forum Contributor
    Join Date
    04-16-2020
    Location
    Alberta, Canada
    MS-Off Ver
    365
    Posts
    230

    Re: UDF for interpolation

    MrShorty: I want to replace the formula in 'O14' & 'O15' where I would just call a UDF. something like @InterpVol("Table1",O14,O15,"ExtA") for 'O14' and the UDF would do the rest. Then a separate UDF for 'O15', something like @FindB("Table2",....) for it's variables.

    I'm not sure how to manipulate the UDF in the workbook I attached to do what I what. Table1 & Table2 are actually in another workbook (it will be open).

  4. #4
    Forum Guru
    Join Date
    04-13-2005
    Location
    North America
    MS-Off Ver
    2002/XP, 2007, 2024
    Posts
    16,386

    Re: UDF for interpolation

    I think I have finally got enough reverse engineered that I can comment (anything you can do or say to make it easier to reverse engineer helps us help you). I'm still not sure exactly what kind of programming approach you want to take. It still looks to me like a multi-D interpolation problem. I notice that the interpolation grid represented by the two tables is a bit irregular (the x and y columns are not consistently spaced), which, I know can impact the choice of the interpolation algorithm (though I do not have the expertise to know exactly how in all cases). Assuming that we can simply apply the 1D interpolation algorithm in your existing UDF multiple times (first in the x direction and then the y direction or vice-versa), then I would expect the overall procedure to look like this (again, I'm not sure exactly how you want to program this, but it can be done either in VBA or in the spreadsheet. if it matters, my preference has usually been to leave my 1D interpolation procedure alone and do the multi-D parts in the spreadsheet):

    1) Need to identify and divide the existing "flat" tables into blocks that represent constant x1 values. In the spreadsheet, this could be as "easy" as rearranging the data (change how you input the tabular data) tables into something that makes it easier to access individual blocks. In VBA, this would mean breaking up the input tables into smaller arrays. Filtering tools or INDEX()/OFFSET() + MATCH() combinations (whether in the spreadsheet or in VBA) might be useful here.
    2) Perform the 1D interpolation in one direction (it looked easier to me to first interpolate z (ExtA in Table 1, ExtPressB in Table 2) as a function of y (LDo in Table 1, ExtPressA in Table2) at all unique values of x (Dot in Table 1, ExtPressTemp in Table 2)). In the spreadsheet, this would be in a helper block of cells, in VBA, this would be a new array(s).
    3) Perform the 1D interpolation in the second direction using the result of step 2.

    Since we already have a procedure that can steps 2 and 3, the main programming step is how to break up the tables into the necessary subtables and whether or not you want to use spreadsheet tools or VBA tools to do that. Once we have done that, it is 2 applications of our existing 1D interpolation procedure. How would you like to proceed on this?

  5. #5
    Forum Contributor
    Join Date
    04-16-2020
    Location
    Alberta, Canada
    MS-Off Ver
    365
    Posts
    230

    Re: UDF for interpolation

    I notice that the interpolation grid represented by the two tables is a bit irregular (the x and y columns are not consistently spaced), which, I know can impact the choice of the interpolation algorithm (though I do not have the expertise to know exactly how in all cases).

    Yes, and Table 2 actually has a lot more 'ExtPressTables' types (CS-1, CS-2, HA-1, etc...) where some of the 'ExtPressTemp' fields start at less than 300 (i.e. 100, or 200), but the way it's set up in the 'Sample1' workbook gives me what I want (comparing it to samples I'm working off)

    I'd like do do it in VBA

    Essentially Code to do 'A', which is currently:

    Please Login or Register  to view this content.
    and code to do 'B', which is currently:

    Please Login or Register  to view this content.
    Ideally, instead of using named column ranges, I'd like to be able to just reference just the table, the variables and what I'm looking for because I want to be able to use it on different table, depending on if it uses 1, 2 or 3 columns to find variables in.

    I would have something like: @Int2D(Table1,O12,O13,ExtA) where the 'Int2D' is in place of the current function InterpVol, and is using two columns to find and interpolate the 'ExtA' column of Table1. And @Int3D(Table2,F3,F6,O14,ExtPressB) to find the 'B' value from Table2

    If it was a formula, this is how it would be based off of the above potential UDF callout @Int2D. Notice that I don't callout for ExtPressA, ExtPressB, or ExtPressTemp, I just grab the column numbers from the table.

    Please Login or Register  to view this content.

    I realize I suck at explaining things, good thing I'm not a teacher, but I hope it is clearer.

  6. #6
    Forum Guru
    Join Date
    04-13-2005
    Location
    North America
    MS-Off Ver
    2002/XP, 2007, 2024
    Posts
    16,386

    Re: UDF for interpolation

    I apologize for being behind on this. As I noted, the hardest part of most linear interpolation problems (especially multi-D interpolation) is the lookup step(s) needed to find the subset(s) of the data needed for the interpolation. At present, I, in my inexperience with finding and extracting subsets of larger data sets in VBA, don't yet have a good way of doing this. I can see what needs to happen:

    1) Take value in O12 (currently ~104). Find the data sets in columns U, V, W that bracket the value in O12 (in this case, the 100 and 125 sets).
    2) Perform 1D interpolation on each of the bracketing data sets (column U= 100 and 125).
    2a) Take value in O13, find the bracketing values in column V corresponding to U=100 and 125, then interpolate columns V and W. Result will be two values at U=100 and 125.
    3) Take results of 2 and interpolate again to get the interpolated value between U and W at value in O12.

    I think at this point, we need to continue waiting until someone more skilled at VBA data array manipulation comes along to help with the lookup steps. Or until you decide that you don't need the entire process to take place in VBA.

  7. #7
    Forum Contributor
    Join Date
    04-16-2020
    Location
    Alberta, Canada
    MS-Off Ver
    365
    Posts
    230

    Re: UDF for interpolation

    MrShorty: I appreciate the input. While I had my fingers crossed it was something someone could figure out, I did take the formula and put it into my sheets 'Format' macro. So when I have 'LookupA(Dot,LDo), or whatever variables within the brackets, it finds the variables on my sheet and puts the cell locations into the formula.


    Row 'G': LookupA(Dot,LDo)
    Row 'N': LookupA(43,1.86)
    Row 'O': 0.0026227

    Row 'G' I type in as a formula and rows 'N' and 'O' are generated when I 'Format'
    where:
    - LookupA calls out the macro name
    - Dot is the first variable i search for on my sheet, which cell location gets assigned to DOT
    - LDo second variable I search for, gets cell location assigned to LDO.
    then I put the formula into Row 'O', and row 'N' gets the numerical values added.


    Please Login or Register  to view this content.
    Not as fancy, but does the trick. I just had to make a few of them to handle the different number of variables.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. 2D interpolation
    By o0tintin0o in forum Excel General
    Replies: 1
    Last Post: 04-02-2012, 03:41 PM
  2. **3D Interpolation x,y,z -> f(x,y,z)**
    By kidongee in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 12-15-2011, 06:59 AM
  3. Replies: 0
    Last Post: 07-24-2008, 02:27 PM
  4. Interpolation
    By MrReds in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 07-12-2008, 08:19 PM
  5. interpolation
    By atatari in forum Excel - New Users/Basics
    Replies: 3
    Last Post: 02-23-2006, 04:10 PM
  6. interpolation
    By atatari in forum Excel General
    Replies: 0
    Last Post: 02-12-2006, 11:50 PM
  7. 3D Interpolation
    By EStewart in forum Excel Formulas & Functions
    Replies: 0
    Last Post: 02-01-2006, 11:55 AM
  8. help with interpolation and limit of interpolation
    By uriel78 in forum Excel General
    Replies: 0
    Last Post: 02-18-2005, 10:06 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1