
The function provides the V-approximation coefficients of the defined Chebyshev polynomials in aproxdef
.
vaprox(aproxspace, sdata)
An approximation space defined by aproxdef
function
A data.frame or matrix of [stock,sdot,benefit]=[
A list of approximation resuts: deg, lb, ub, delta, and coefficients. Use results$item
(or results[["item"]]
) to import each result item.
degree of Chebyshev polynomial
lower bound of Chebyshev nodes
upper bound of Chebyshev nodes
discount rate
Chebyshev polynomial coefficients
The V-approximation is finding the shadow price of
where
Consider approximation
In a case of over-determined (more nodes than approaximation degrees),
For more detils see Fenichel and Abbott (2014), Fenichel et al. (2016), and Yun et al. (2017).
Fenichel, Eli P. and Joshua K. Abbott. (2014) "Natural Capital: From Metaphor to Measurement." Journal of the Association of Environmental Economists. 1(1/2):1-27. Fenichel, Eli P., Joshua K. Abbott, Jude Bayham, Whitney Boone, Erin M. K. Haacker, and Lisa Pfeiffer. (2016) "Measuring the Value of Groundwater and Other Forms of Natural Capital." Proceedings of the National Academy of Sciences.113:2382-2387. Yun, Seong Do, Barbara Hutniczak, Joshua K. Abbott, and Eli P. Fenichel. (2017) "Ecosystem Based Management and the Welath of Ecosystems" Proceedings of the National Academy of Sciences. (forthcoming).
## 1-D Reef-fish example: see Fenichel and Abbott (2014)
data("GOM")
nodes <- chebnodegen(param$nodes,param$lowerK,param$upperK)
simuDataV <- cbind(nodes,sdot(nodes,param),profit(nodes,param))
Aspace <- aproxdef(param$order,param$lowerK,param$upperK,param$delta)
vC <- vaprox(Aspace,simuDataV)
## 2-D Prey-Predator example
data("lvdata")
aproxdeg <- c(20,20)
lower <- c(0.1,0.1)
upper <- c(1.5,1.5)
delta <- 0.03
lvspace <- aproxdef(aproxdeg,lower,upper,delta)
vaproxc <- vaprox(lvspace,lvaproxdata)
Run the code above in your browser using DataLab