https://github.com/cran/pracma
Raw File
Tip revision: 12e26b7898f3fb6da81e710947bff1bfaf513f81 authored by Hans W. Borchers on 04 March 2022, 09:40:02 UTC
version 2.3.8
Tip revision: 12e26b7
fnorm.R
##
##  f n o r m  Test suite
##


fnorm <- pracma::fnorm

identical(fnorm(log, sqrt, 1, 2, p = Inf), 1.0)
identical(fnorm(log, sqrt, 1, 2, p = -Inf), sqrt(2) - log(2))
identical(fnorm(log, sqrt, 1, 2, p = 0), Inf)
back to top