Displaying 1 result from an estimated 1 matches for "itlevel".
Did you mean:
  tlevel
  
2003 Sep 19
1
Weird problem with my code....
...--------------------------------------
Here is the R function (I've inserted various "cat" statements to count 
the number of NA, nan and Infs at various stages)
---------------------------------------------------------
"ScalingFunction" <-
function(resolution = 4096, itlevels = 50)
{
    res <- 4 * resolution    #
#
# Select filter and work out some fixed constants
#
    H <- c(-1/sqrt(2), 1/sqrt(2))
    lengthH <- length(H)
    ll <- lengthH
    v <- rep(0, res)    #
#
# Set initial coefficient to 1 in 2nd position on 1st level
#
    v[2] <- 1    #
#...