4
promesa ya en evaluación: referencia recursiva de argumento predeterminado o problemas anteriores?
Aquí está mi código R. Las funciones se definen como: f <- function(x, T) { 10 * sin(0.3 * x) * sin(1.3 * x ^ 2) + 0.001 * x ^ 3 + 0.2 * x + 80 } g <- function(x, T, f=f) { exp(-f(x) / T) } test …
143
r