Results 1 to 3 of 3

Thread: Linear interpolation. retrieving the wrong data.

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #2
    VBAX Sage
    Joined
    Apr 2007
    Location
    United States
    Posts
    8,888
    Location
    "'copies over known Rates using the step" was wrong

    Option Explicit
    
    Function Interpolate(oldRates As Variant, freq As Integer) As Variant
        Dim i As Long, j As Long, Maturity As Integer
        
        Maturity = oldRates(oldRates.Rows.Count, 1)
        
        
        Dim Mat() As Double
        ReDim Mat(1 To Maturity * freq + 1, 1 To 2)
        
        'Fills in the years
        For i = 2 To Maturity * freq + 1
            Mat(i, 1) = Mat(i - 1, 1) + 1 / freq
            Mat(i, 2) = 0
        Next i
        
    '-------------------------------------------------------------------------------
        'copies over known Rates using the step
        For i = 1 To Maturity
            Mat(i * freq + 1, 2) = oldRates(i, 2)
        Next i
    '-------------------------------------------------------------------------------
         
         'find if missing rates
         Mat(1, 2) = 0
         For i = 2 To Maturity * freq + 1
            If Mat(i, 2) = 0 Then
                                         
                For j = i + 1 To Maturity * freq + 1  'find the next Filled Rate to interpolate with
                    If Mat(j, 2) <> 0 Then       'if statement
                        
                        Mat(i, 2) = Mat(i - 1, 2) + (Mat(j, 2) - Mat(i - 1, 2)) / (Mat(j, 1) - Mat(i - 1, 1)) * (Mat(i, 1) - Mat(i - 1, 1))
                        Exit For
                   End If
                Next j
            End If
        Next i
        
        Interpolate = Mat
                   
    End Function
    Attached Files Attached Files
    ---------------------------------------------------------------------------------------------------------------------

    Paul


    Remember: Tell us WHAT you want to do, not HOW you think you want to do it

    1. Use [CODE] ....[/CODE ] Tags for readability
    [CODE]PasteYourCodeHere[/CODE ] -- (or paste your code, select it, click [#] button)
    2. Upload an example
    Go Advanced / Attachments - Manage Attachments / Add Files / Select Files / Select the file(s) / Upload Files / Done
    3. Mark the thread as [Solved] when you have an answer
    Thread Tools (on the top right corner, above the first message)
    4. Read the Forum FAQ, especially the part about cross-posting in other forums
    http://www.vbaexpress.com/forum/faq...._new_faq_item3

Posting Permissions

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